Exponent Calculator

Step 3: Start the product at 1, and multiply the product by the base however many times the power is. Show the product for each iteration.
Hint: Use a loop:
for n in range(some_number):
  # your code here
Last step Next step