1.

Given two integers x and n , compute x to the power n.Write the python code for it.

Answer» x = int(input("Enter value of x : "))n = int(input("Enter the value of n : "))print("xⁿ = ", x**n)


Discussion

No Comment Found