Created
September 15, 2018 04:46
-
-
Save locona/94a3064d34e4841b0c6275228139e6bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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