- 2
exponential? >>>5**2=32? how?
Why is >>>5**2 =32? It doesn’t make sense in python
4 Answers
+ 7
Are you sure you put it in that order? I mean, if you put it backwards it gives that result:
2 ** 5 = 32
+ 3
i tried several online interpreters and got 25 all around...
How did you get to this answer?
Just a one liner?
0
5**2 = 5*5 = 25 always, but
2**5 = 2*2*2*2*2 = 32 always.
0
Are you sure you gave the right input?Please check that again because it seems like there is a bug in your input.