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
It's just that ^ does not mean "exponent" in Python. It means "bitwise XOR". See the documentation.
^