Skip to content

Instantly share code, notes, and snippets.

@dboyliao
Last active May 26, 2016 14:01
Show Gist options
  • Save dboyliao/3ec9aa58a42b41070f1d9f78f75d00b5 to your computer and use it in GitHub Desktop.
Save dboyliao/3ec9aa58a42b41070f1d9f78f75d00b5 to your computer and use it in GitHub Desktop.
a simple while example
while True:
guess = int(input("Enter a number: "))
if guess == 5:
print("you win!")
break
else:
print("do other things here")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment