Skip to content

Instantly share code, notes, and snippets.

@nim4n136
Created January 18, 2020 09:25
Show Gist options
  • Save nim4n136/c43352bdb441ec213a70e70529084453 to your computer and use it in GitHub Desktop.
Save nim4n136/c43352bdb441ec213a70e70529084453 to your computer and use it in GitHub Desktop.
Try Catch python 3
import traceback
try:
print(555)
except Exception as e:
print("type error: " + str(e))
print(traceback.format_exc())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment