Answers for "2 liste to a dictionary"

0

2 liste to a dictionary

d = {}
for i in list1:
    for j in list2:
        d[i] = j
print d
Posted by: Guest on August-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language