Answers for "convert two lists to a single dictionary python"

1

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)
Posted by: Guest on January-04-2021

Code answers related to "convert two lists to a single dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language