Question Detail
Question
In the "Guess the Number Game," why is
while True: used as the loop condition?
Correct Answer
Option C is the correct answer.
Detailed Explanation
Page 12 states "Use while True: to keep asking for a guess." This means the loop will run forever unless a
break statement is encountered.
Hint
What does
True evaluate to in a boolean context?