Instagram
youtube
Facebook
Twitter

Calculate Power Using pow() Method

A Python program to calculate the power of a number using the built-in pow() function.

Code Explanation in Points:

  1. Taking User Input:
     
    • The program prompts the user to enter a base number (base).
       
    • The user is asked to enter an exponent (exponent).
       
    • Both inputs are converted into integers using int(input()).
       
  2. Calculating Power using pow() Function:
     
    • pow(base, exponent) computes base raised to the power of exponent (base^exponent).
       
  3. Displaying the Result:
     
    • The calculated power value is stored in the result.
       
    • The program prints the final result.

 

Program:

base = int(input("Enter the base number: "))

exponent = int(input("Enter the exponent: "))



result = pow(base, exponent)  

print("Result:", result)