将列表的每个值分配给另一个变量列表

时间:2017-12-13 11:13:15

标签: python python-3.x list

我有两个清单:

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中有什么办法?

1 个答案:

答案 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}