Instagram
youtube
Facebook
Twitter

Calculate Power of a Number Without pow()

A Python program to compute the power of a number using a for loop instead of the built-in pow() function.

Code Explanation in Points:

  1. Function Definition (calculate_power(base, exponent))
     
    • Initializes result = 1.
       
    • Uses a for loop to multiply result by base, exponent times.
       
    • Returns the final result.
       
  2. Taking User Input
     
    • The user enters values for base and exponent.
       
    • Inputs are converted to integers.
       
  3. Calling the Function
     
    • calculate_power(base, exponent) is executed with user inputs.
       
    • The computed power is stored in result.
       
  4. Printing the Result
     
    • The final power value is displayed.

 

Program:

def calculate_power(base, exponent):  

    result = 1

    for i in range(exponent):  

        result *= base

    return result

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

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

result = calculate_power(base, exponent)

print("Result:", result)