Answers for "python join two lists as dictionary"

0

merge a list of dictionaries python

>>> from collections import ChainMap
>>> a = [{'a':1},{'b':2},{'c':1},{'d':2}]
>>> dict(ChainMap(*a))
{'b': 2, 'c': 1, 'a': 1, 'd': 2}
Posted by: Guest on October-13-2020
0

python join two lists as dictionary

# using zip()
# to convert lists to dictionary

# initializing lists
test_keys = ["Rash", "Kil", "Varsha"]
test_values = [1, 4, 5]
  
res = dict(zip(test_keys, test_values))
Posted by: Guest on February-16-2022

Code answers related to "python join two lists as dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language