Created
December 26, 2020 01:50
-
-
Save yoki/f76be8cc532414aa1898ae91a5887313 to your computer and use it in GitHub Desktop.
Python Errors and Exceptions
This file contains 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: | |
func() | |
except IOError as exc: | |
print(exc) | |
raise exc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment