Skip to content

Instantly share code, notes, and snippets.

@dnase
Created September 30, 2014 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnase/f8bbfeb3d0c7e6449702 to your computer and use it in GitHub Desktop.
Save dnase/f8bbfeb3d0c7e6449702 to your computer and use it in GitHub Desktop.
# Not "Pythonic"
if 'keyname' in item.keys():
return item['keyname']
return None
# Is "Pythonic"
try:
return item['keyname']
except KeyError:
pass
return None
# W. T. F.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment