Skip to content

Instantly share code, notes, and snippets.

@matlink
Created March 12, 2018 14:03
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 matlink/1577c5eebde6ced60be4620e5f02bbdd to your computer and use it in GitHub Desktop.
Save matlink/1577c5eebde6ced60be4620e5f02bbdd to your computer and use it in GitHub Desktop.
Default value for missing value of python dict
from collections import defaultdict as ddict
dic = ddict(lambda: '<my_default_value>')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment