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