Skip to content

Instantly share code, notes, and snippets.

@locona
Created September 15, 2018 04:46
Show Gist options
  • Save locona/94a3064d34e4841b0c6275228139e6bc to your computer and use it in GitHub Desktop.
Save locona/94a3064d34e4841b0c6275228139e6bc to your computer and use it in GitHub Desktop.
try:
print("try")
raise Exception("RAISE")
except Exception as e:
print(e)
finally:
print("finally")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment