Skip to main content

Posts

Showing posts with the label #Write a Python program to find power of any number x ^ y.

ads1

Python Basic , 10. Write a Python program to find power of any number x ^ y.

  10. Write a Python program to find power of any number x ^ y. no1 = int(input("Enter the first number :- ")) no2 = int(input("Enter the Second number :- ")) exp = no1 ** no2 print("The power is :- ",exp)   Output :-

ads2