Here, we are going to calculate the value of Nth power of a number without using power function.
The idea is using loop. We will be multiplying a number (initially with value 1) by the number input by user (of which we have to find the value of Nth power) for N times. For multiplying it by N times, we need to run our loop N times. Since we know the number of times loop will execute, so we are using for loop.
Example:
Input:
base: 5, power: 4
Output:
625
Python code to find power of a number using loop
Output
need an explanation for this answer? contact us directly to get an explanation for this answer