Question: use python and while loop ask user for 2 numbers multiply numbers and display ask if they want to try again (Y/N?) Y to begin
use python and while loop
ask user for 2 numbers
multiply numbers and display
ask if they want to try again (Y/N?) Y to begin again or N to exit
so far I have wrote out.. would appreciate some tips
try_again = "Y"
while try_again == "Y":
number1 = float(input("Enter number: ")) number2 = float(input("Enter number: "))
product = number1 * number2 print("product is", product)
try_again = input("Try again? (Y/N)?")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
