create dictionary python with two lists code example
Example 1: python 3 how to set a dictionary from two lists
mydict = dict(zip(list1, list2))
Example 2: create dict from two lists
keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))