Created
May 19, 2012 22:58
-
-
Save mechanical-snail/2732698 to your computer and use it in GitHub Desktop.
Automatically infinitely-nested defaultdict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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