Skip to content

Instantly share code, notes, and snippets.

@mindflayer
Created September 21, 2013 09:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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'}