Skip to content

Instantly share code, notes, and snippets.

@anandtripathi5
Created February 16, 2022 22:55
Show Gist options
  • Select an option

  • Save anandtripathi5/fe2bd4d30f0d04f0d0ad5133e61dd799 to your computer and use it in GitHub Desktop.

Select an option

Save anandtripathi5/fe2bd4d30f0d04f0d0ad5133e61dd799 to your computer and use it in GitHub Desktop.
Zen of python - Unless explicitly silenced
# 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