8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee55cc1 commit e25248dCopy full SHA for e25248d
how-to-exit-loops-early-with-python-break-keyword/user_input_example.py
@@ -9,7 +9,7 @@
9
f"You ran out of guesses! The correct number was {random_number}"
10
)
11
break
12
- guess = input("Guess a number between 1 and 10, or enter q to quit:")
+ guess = input("Guess a number between 1 and 10, or enter q to quit: ")
13
if guess == "q":
14
print("Successfully exited game.")
15
0 commit comments