71. Python Program to find ‘m’ power ‘n’ of a given number.
How does this program work?
- This program is used to find ‘m’ power ‘n’ of a given number using Python.
Here is the code
a = int(input( "Enter a number: "))
b = int(input("Enter the power of a number: "))
print(a," to the power of ", b," is : ",a ** b)