Skip to content

Instantly share code, notes, and snippets.

@ramalho
Created September 7, 2015 21:29
Show Gist options
  • Select an option

  • Save ramalho/1f558d018959c09e64bb to your computer and use it in GitHub Desktop.

Select an option

Save ramalho/1f558d018959c09e64bb to your computer and use it in GitHub Desktop.
Simple exception example
while True:
response = input('Enter a number: ')
try:
n = float(response)
except ValueError:
print('%r is not a number' % response)
else:
break
print('Nice number. Thanks!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment