Skip to content

Instantly share code, notes, and snippets.

@nkrumm
Created June 9, 2013 21:38
Show Gist options
  • Save nkrumm/5745354 to your computer and use it in GitHub Desktop.
Save nkrumm/5745354 to your computer and use it in GitHub Desktop.
infinite default dict (courtesy of @raymondh)
infinite_defaultdict = lambda: defaultdict(infinite_defaultdict)
d = infinite_defaultdict()
d['x']['y']['z'] = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment