0
How can i do exponentiation
tell me about it I can't learned about it I am 15 years old
2 Réponses
+ 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