Skip to content

Instantly share code, notes, and snippets.

@mechanical-snail
Created May 19, 2012 22:58
Show Gist options
  • Save mechanical-snail/2732698 to your computer and use it in GitHub Desktop.
Save mechanical-snail/2732698 to your computer and use it in GitHub Desktop.
Automatically infinitely-nested defaultdict
#!/usr/bin/env python3
from collections import defaultdict
infinite_dict = lambda : defaultdict(infinite_dict)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment