Skip to content

Instantly share code, notes, and snippets.

@lucrib
Created November 3, 2014 17:37
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 lucrib/d21885c5dfe29961b34f to your computer and use it in GitHub Desktop.
Save lucrib/d21885c5dfe29961b34f to your computer and use it in GitHub Desktop.
Python Exception Handling
try:
You do your operations here;
......................
except ExceptionI:
If there is ExceptionI, then execute this block.
except ExceptionII:
If there is ExceptionII, then execute this block.
......................
else:
If there is no exception then execute this block.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment