Skip to content

Instantly share code, notes, and snippets.

@seedifferently
Last active June 14, 2017 17:13
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 seedifferently/7c42c12139b3dff56c1e603d78e48d81 to your computer and use it in GitHub Desktop.
Save seedifferently/7c42c12139b3dff56c1e603d78e48d81 to your computer and use it in GitHub Desktop.
Python dict check key
>>> d = {'food': 'spam'}
>>> 'food' in d
True
>>> 'missing' in d
False
>>> 'missing' not in d
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment