Skip to content

Instantly share code, notes, and snippets.

Created May 21, 2012 17:45
Show Gist options
  • Save anonymous/2763520 to your computer and use it in GitHub Desktop.
Save anonymous/2763520 to your computer and use it in GitHub Desktop.
def mk_nested_defaultdict(levels, type):
base = 'defaultdict({})'.format(type.__name__)
for i in xrange(levels - 1):
base = 'defaultdict(lambda: {})'.format(base)
return eval(base)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment