我有两个清单:
list1 = ['a', 'b', 'c', 'd', 'e']
list2 = [10, 20, 30, 40, 50]
我想将list2值分配给list1变量。简单地提出我想要这样的最终结果:
final_list = ['a' = 10, 'b' = 20, 'c' = 30, 'd' = 40, 'e' = 50]
在python3中有什么办法?
答案 0 :(得分:1)
您可以使用zip
list1 = ['a', 'b', 'c', 'd', 'e']
list2 = [10, 20, 30, 40, 50]
res = dict(zip(list1,list2))
输出:
{'a': 10, 'c': 30, 'b': 20, 'e': 50, 'd': 40}