Question: Write a Python 3.7.2 program that uses a while loop to multiply integer factors entered by the user. The program should continue to accept integer
Write a Python 3.7.2 program that uses a while loop to multiply integer factors entered by the user. The program should continue to accept integer factors until the user presses ENTER. The running product should be displayed after each input. See Sample Output.
Sample Output
Enter an integer factor or ENTER to quit 3 The running product is now 3 Enter an integer factor or ENTER to quit 5 The running product is now 15 Enter an integer factor or ENTER to quit 6 The running product is now 90 Enter an integer factor or ENTER to quit 8 The running product is now 720 Enter an integer factor or ENTER to quit Program ended
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
