Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python and Powers Math

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. Example:

print 8^3 

Gives an output of 11. But what I'm look for (I'm told) is more akin to: print 8**3 which gives the correct answer of 512. But why?

Can someone explain this to me? Why is it that 8^3 does not equal 512 as it is the correct answer? In what instance would 11 (the result of 8^3)?

I did try to search SO but I'm only seeing information concerning getting a modulus when dividing.

like image 738
Interrupt Avatar asked Aug 20 '12 19:08

Interrupt


People also ask

How do you do powers in math in Python?

The ** operator in Python is used to raise the number on the left to the power of the exponent of the right. That is, in the expression 5 ** 3 , 5 is being raised to the 3rd power.

Can you use for power in Python?

Python Power: ** Operator The Python ** operator is used to raise a number in Python to the power of an exponent. In other words, ** is the power operator in Python.

How is Python used in mathematics?

The Python math module provides functions that are useful in number theory as well as in representation theory, a related field. These functions allow you to calculate a range of important values, including the following: The factorials of a number. The greatest common divisor of two numbers.


1 Answers

Operator ^ is a bitwise operator, which does bitwise exclusive or.

The power operator is **, like 8**3 which equals to 512.

like image 58
behnam Avatar answered Sep 17 '22 19:09

behnam