Skip to content

Instantly share code, notes, and snippets.

@caseycrites
Created June 11, 2012 21:38
Show Gist options
  • Select an option

  • Save caseycrites/2912900 to your computer and use it in GitHub Desktop.

Select an option

Save caseycrites/2912900 to your computer and use it in GitHub Desktop.
>>> def divide():
... return 5/0
...
>>> def go():
... try:
... return divide()
... except ZeroDivisionError:
... return "divided by zero"
...
>>> go()
'divided by zero'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment