Answers for "zip lists into dictionary python"

3

python 3 how to set a dictionary from two lists

mydict = dict(zip(list1, list2))
Posted by: Guest on November-16-2020
0

zip list to dictionary python

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
print(dictionary) 
# {'a': 1, 'b': 2, 'c': 3}
Posted by: Guest on April-30-2021

Code answers related to "zip lists into dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language