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