list of dict to single dict python code example
Example 1: create dict from two lists
keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
Example 2: list to dict python with same values
fruit_dictionary = dict.fromkeys(fruits, "In stock")