#python exponent operator
num = 2
new_num = num**2
#answer would be 4
print(5 ** 3) #125
# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3
Exponents = ('¹', '²', '³', '⁴', '⁵', '⁶', '⁷', '⁸', '⁹', '⁰', 'ᵃ', 'ᵇ', 'ᶜ', 'ᵈ', 'ᵉ', 'ᵏ', 'ᵐ', 'ⁿ', 'ʷ', 'ˣ', 'ʸ', 'ᶻ', '⁽', '⁾', '⁺', '⁻')
def raise_to_power(base_num * pow_num):
result = 1
for index in range(pow_num):
result = result * base_num
return result
print(raise_to_power(2, 3))
# Then print the answer to the screen
# in the last linke after the variable (2, 3) u all can put any number there to find the answer of any question.