Python and Powers Math

前端 未结 3 1854
庸人自扰
庸人自扰 2020-11-29 07:58

I\'ve been learning Python but I\'m a little confused. Online instructors tell me to use the operator ** as opposed to ^ when I\'m trying to raise to a certain number. Examp

3条回答
  •  萌比男神i
    2020-11-29 08:37

    It's just that ^ does not mean "exponent" in Python. It means "bitwise XOR". See the documentation.

提交回复
热议问题