combine values of 2 lists into a dictionary python code example
Example 1: python 3 how to set a dictionary from two lists
mydict = dict(zip(list1, list2))
Example 2: convert two lists to a single dictionary python
#initialize lists
key_list = ['red', 'green', 'blue']
value_list = [1, 2, 3]
#convert lists
my_dict = {}
for key in key_list:
for value in value_list:
my_dict[key] = value
value_list.remove(value)
break
print(my_dict)