tmp = dict(zip(listToAppend, x_test))
# x_test is a data vector imported earlier from a file
答案 0 :(得分:2)
>>> listToAppend = ['a', 'b', 'c']
>>> x_test = [1, 2, 3]
>>> zip(listToAppend, x_test)
[('a', 1), ('b', 2), ('c', 3)]
>>> dict(zip(listToAppend, x_test))
{'a': 1, 'c': 3, 'b': 2}
答案 1 :(得分:1)
以two
列表为例,了解它。
zip
合并了两个列表,并使用两个列表中的元素创建list
2-elements tuple
个dict
。
然后list
将tuple
1st element
转换为字典,每个元组的key
为>>> l1 = [1, 2, 3]
>>> l2 = [4, 5, 6]
>>> zip(l1, l2)
[(1, 4), (2, 5), (3, 6)]
>>> dict(zip(l1, l2))
{1: 4, 2: 5, 3: 6}
>>>
,第二个值为值。
3 lists
如果您使用zip
合并list of 3-elements tuple
,则会获得zip
。
此外,如果您的列表大小不同,则>>> l1 = ['a', 'b']
>>> l2 = [1, 2, 3]
>>> zip(l1, l2)
[('a', 1), ('b', 2)]
仅考虑最小尺寸,并忽略较大列表中的额外元素。
{{1}}