Created
February 14, 2013 19:03
-
-
Save mythmon/4955336 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = None | |
while x is None: | |
try: | |
x = int(input("Please enter a number: ")) | |
except ValueError: | |
print("Oops! That was no valid number. Try again...") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment