Question: PYTHON Write a program which asks the user for two numbers and calculates the first number raised to the second number. Sample program output: Please
PYTHON
Write a program which asks the user for two numbers and calculates the first number raised to the second number.
Sample program output:
Please enter number 1: 2
Please enter number 2: 5
2 ** 5 is 32
Note: Do not use the ** operator or the pow() function use loops and multiplication to calculate the answer
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
