Skip to content

Instantly share code, notes, and snippets.

@cjlovering
Created December 8, 2020 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjlovering/dcbdf9850648d4c4e89ae7947ceed255 to your computer and use it in GitHub Desktop.
Save cjlovering/dcbdf9850648d4c4e89ae7947ceed255 to your computer and use it in GitHub Desktop.
Build a DefaultDict directly.
from collections import DefaultDict
x = {"1": 1, "2": 2}
DefaultDict(int, x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment