- 2
exponential? >>>5**2=32? how?
Why is >>>5**2 =32? It doesnât make sense in python
3 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
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.