Question: Consider: answer = while [condition]: # some statements # some statements answer = input(What do you want to do? > ).upper() Which of the

Consider: answer = while [condition]: # some statements # some statements input("What do you want to do? > ").upper() answer = Which of the following conditions will cause this loop to: repeat, if the user types "repeat" repeat, if the user types "continue" repeat, if the user types "again" end, if the user types "end" end, if the user types "END" . . answer == "repeat" and answer == "continue" and answer == "again" O answer == "end" O answer != "END" O answer == "repeat" or answer == "continue" Which of the following DOES NOT properly check if the string variable 'title' contains the word "the"? O title.count("the") > 0 O title.indexof("the") != -1 O title == "the" "the" in title
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
