0
How do ya solve exponentiation
2**4
4 Answers
+ 1
print (2**4)
+ 1
If you're talking about the steps, the first, leftmost number is multiplied a certain number of times based on the second, rightmost number. For example, 2 ** 4 is equal to 16, because:
2 * 2 * 2 * 2 = 16
0
?
0
just multiply left integer with same number to number of times which mentioned on right side
2*2*2*2 = 16