Skip to content

Instantly share code, notes, and snippets.

@niranjrajasekaran
Last active May 8, 2019 08:59
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 niranjrajasekaran/20a141b7da882cad8cbdcef2b437990d to your computer and use it in GitHub Desktop.
Save niranjrajasekaran/20a141b7da882cad8cbdcef2b437990d to your computer and use it in GitHub Desktop.
Basic Implementation of python dict
In [1]: d = {'first_value': 1, 'second_value': 2}
In [2]: type(d)
Out[2]: dict
In [3]: d['fist_value']
Out[3]: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment