Problem Definition
Create a Python program to take two numbers from the user one being the base number another the exponent then calculate the power.
Program
import math
base_number = float(input("Enter the base number"))
exponent = float(input("Enter the exponent"))
power = math.pow(base_number,exponent)
print("Power is =",power)
Output
Enter the base number 2
Enter the exponent 4
Power is = 16.0
The built-in math module provides a number of functions for mathematical operations. The pow()
method takes a base number and exponent as parameters and returns the power.
Since in Python, there is always more than one way of achieving things calculating power with the exponentiation operator is also possible. The exponentiation operator x**y
evaluates to power.
Program
base_number = int(input("Enter the base number"))
exponent = int(input("Enter the exponent"))
power = base_number ** exponentprint("Result is =",power)
Output
Enter the base number 2
Enter the exponent 5
Result is = 32