Created
February 16, 2022 22:55
-
-
Save anandtripathi5/fe2bd4d30f0d04f0d0ad5133e61dd799 to your computer and use it in GitHub Desktop.
Zen of python - Unless explicitly silenced
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
| # Bad | |
| capitals = dict(india='delhi', netherlands='amsterdam') | |
| try: | |
| captial = capitals['kenya'] | |
| except: | |
| print("What is this error") | |
| # Good | |
| try: | |
| capital = capitals['kenya'] | |
| except KeyError as e: | |
| print(e) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment