Skip to content

Instantly share code, notes, and snippets.

@MostAwesomeDude
Forked from anonymous/gist:2763520
Created May 21, 2012 17:49
Show Gist options
  • Save MostAwesomeDude/2763537 to your computer and use it in GitHub Desktop.
Save MostAwesomeDude/2763537 to your computer and use it in GitHub Desktop.
def mk_nested_defaultdict(levels, factory):
base = lambda: defaultdict(factory)
while levels:
levels -= 1
base = lambda: defaultdict(base)
return defaultdict(base)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment