Answers for "python list of dict to single dict"

1

create dict from two lists

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
Posted by: Guest on March-16-2021

Code answers related to "python list of dict to single dict"

Python Answers by Framework

Browse Popular Code Answers by Language