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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!