Answers for "dictionary multiple values per key"

2

how to have multiple values to a key in dict in python

from collections import defaultdict
 data = [(2010, 2), (2009, 4), (1989, 8), (2009, 7)]
 d = defaultdict(list)
print (d) # output --> defaultdict(<type 'list'>, {})
 for year, month in data:
     d[year].append(month) 
print (d) # output --> defaultdict(<type 'list'>, {2009: [4, 7], 2010: [2], 1989: [8]})
Posted by: Guest on September-23-2020
0

dictionary multiple values per key

key = "somekey"
a.setdefault(key, [])
a[key].append(1)
Posted by: Guest on June-14-2020
0

multiple values in a dictionary python

a["abc"] = [1, 2, "bob"]
Posted by: Guest on December-28-2020
0

how to use multiple keys for single value in dictionary python

#Python Dictionary only contain one key : one value pair.
#You can surely have multiple keys having same value
#Example :-
  dict = {'a':'value1', 'b':'value2', 'c':'value 3'}
#In above we have a and b key having same values
Posted by: Guest on March-15-2021

Code answers related to "dictionary multiple values per key"

Python Answers by Framework

Browse Popular Code Answers by Language