Skip to content

Instantly share code, notes, and snippets.

@ralexx
Created April 8, 2024 15:20
Show Gist options
  • Save ralexx/c8ebd2fa645cf413d4ff145ada67a020 to your computer and use it in GitHub Desktop.
Save ralexx/c8ebd2fa645cf413d4ff145ada67a020 to your computer and use it in GitHub Desktop.
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