Skip to content

Instantly share code, notes, and snippets.

@Kwpolska
Created April 23, 2017 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kwpolska/c6ba787bf12fd29a34b86117c2bb74ae to your computer and use it in GitHub Desktop.
Save Kwpolska/c6ba787bf12fd29a34b86117c2bb74ae to your computer and use it in GitHub Desktop.
def ask_int(question):
"""Ask a question and return an integer."""
while True:
try:
return int(input(question))
except ValueError:
print("Not a number, please try again.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment