Skip to content

Instantly share code, notes, and snippets.

@mindflayer
Created September 21, 2013 09:00
Show Gist options
  • Save mindflayer/6648751 to your computer and use it in GitHub Desktop.
Save mindflayer/6648751 to your computer and use it in GitHub Desktop.
Compile time dictionary
>>> def a(b, c={}):
... c[b] = b
... print c
...
>>> a('prova')
{'prova': 'prova'}
>>> a('gatto')
{'prova': 'prova', 'gatto': 'gatto'}
>>> a('mela')
{'prova': 'prova', 'mela': 'mela', 'gatto': 'gatto'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment