+ 1
How to solve 2**5
3 Antworten
+ 6
https://www.tutorialspoint.com/JUMP_LINK__&&__python__&&__JUMP_LINK/python_basic_operators.htm
2 ** 5
2 * 2 * 2 * 2 * 2
32
+ 4
1 << 5 = 100000 (in binary)
Which when converted to decimal is 2^5 which is 32
Or you can do as above suggested ^