Answers for "list of dict to single dict python"

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
0

list to dict python with same values

fruit_dictionary = dict.fromkeys(fruits, "In stock")
Posted by: Guest on April-13-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language