Python dictlist

From Wildsong
Revision as of 23:24, 2 July 2018 by Brian Wilson (talk | contribs) (Created page with "This is a common pattern that I use, I need a dictionary that has a list for each of its values, like this d = { "a" : [1,2,3], "b" : [3,4,5], } https://docs.pyth...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This is a common pattern that I use, I need a dictionary that has a list for each of its values, like this

d = {
   "a" : [1,2,3],
   "b" : [3,4,5],
}


https://docs.python.org/2/library/collections.html#collections.defaultdict