Skip to content

Instantly share code, notes, and snippets.

@seedifferently
Last active June 15, 2017 13: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/1bb21965b75538c25f755ed28ec3472a to your computer and use it in GitHub Desktop.
Save seedifferently/1bb21965b75538c25f755ed28ec3472a to your computer and use it in GitHub Desktop.
Python dict examples
>>> # create an empty dict
>>> d = {}
>>> # set a key/value pair
>>> d['food'] = 'spam'
>>> # retrieve a value for the key
>>> d['food']
'spam'
>>> # remove a key/value pair
>>> del d['food']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment