0
How can i do exponentiation
tell me about it I can't learned about it I am 15 years old
2 Answers
+ 7
2²=2*2(2 times multiply 2 by itself)=4
3â´=3*3*3*3(4 times multiply 3 by itself)=81
âľÂš=5(1 time multiply 5 by itself)
in python
print(2**2) #outputs 4 (2²)
print(3**4) #outputs 81(3â´)
print(5**1) #outputs 5
+ 1
thanks