Question: Would you please help me . ITP-150 - Assignment - Looping Problems Three - Instructions Solve these looping problems three. For each problem, create a
Would you please help me .

ITP-150 - Assignment - Looping Problems Three - Instructions Solve these looping problems three. For each problem, create a new Python file. If starter code is provided below, then copy the starter code into the Python file. Note that some starter code given has syntax errors or other bugs. Fix these to get the program working (note there are several possible solutions). Feel free to change code as you would like, as long as you still meet all requirements. Problem #1 - Requirements: Print "hello" in a while loop. Ask user if they want to quit (handle both upper-case and lower-case Y/N y). Print "Goodbye" at end of program. Starter Code: while True print ("Hello! ") quit = input ("Want to quit? Enter Y or N: ") if quit = "Y" break print ( ' Goodbye! ' )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
