Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

How is slaked lime powder prepared ?

Answered: 1 week ago

Question

Why does electric current flow through acid?

Answered: 1 week ago

Question

What is Taxonomy ?

Answered: 1 week ago

Question

1. In taxonomy which are the factors to be studied ?

Answered: 1 week ago