Created
April 8, 2024 15:20
-
-
Save ralexx/c8ebd2fa645cf413d4ff145ada67a020 to your computer and use it in GitHub Desktop.
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
def recursive_defaultdict(): | |
"""x = recursive_defaultdict() | |
x['key0']['key1'] = 'value' # etc.""" | |
return defaultdict(recursive_defaultdict) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment