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)
![SkillPundit: Python Program To find the m power n of given number To find the m power n of given number SkillPundit](img/SkillPundit-python-m-power-n.jpg)
![](img/add1.png)