如何在 Python 中将两个列表组合成一个字典?

我有两个长度相同的列表:

[1,2,3,4][a,b,c,d]

I want to create a dictionary where I have {1:a, 2:b, 3:c, 4:d}

最好的办法是什么?

151419 次浏览
dict(zip([1,2,3,4], [a,b,c,d]))

如果列表很大,你应该使用 itertools.izip

如果您的键比值多,并且希望为额外的键填充值,则可以使用 itertools.izip_longest

Here, a, b, c, and d are variables -- it will work fine (so long as they are defined), but you probably meant ['a','b','c','d'] if you want them as strings.

zip 从每个迭代中取出第一个条目,生成一个元组,然后从每个元组生成第二个条目,等等。

dict 可以采用一个迭代器,其中每个内部迭代器有两个项——然后使用第一个作为键,第二个作为每个项的值。

>>> dict(zip([1, 2, 3, 4], ['a', 'b', 'c', 'd']))
{1: 'a', 2: 'b', 3: 'c', 4: 'd'}

If they are not the same size, zip will truncate the longer one.

dict(zip([1,2,3,4], ['a', 'b', 'c', 'd']))

Http://docs.python.org/library/functions.html

我不知道什么是最好的(最简单? 最快? 最易读?) ,但有一种方法是:

dict(zip([1, 2, 3, 4], [a, b, c, d]))

我发现自己需要创建一个包含三个列表(纬度、经度和值)的字典,其中包括以下步骤:

> lat = [45.3,56.2,23.4,60.4]
> lon = [134.6,128.7,111.9,75.8]
> val = [3,6,2,5]
> dict(zip(zip(lat,lon),val))
{(56.2, 128.7): 6, (60.4, 75.8): 5, (23.4, 111.9): 2, (45.3, 134.6): 3}

或类似上述例子:

> list1 = [1,2,3,4]
> list2 = [1,2,3,4]
> list3 = ['a','b','c','d']
> dict(zip(zip(list1,list2),list3))
{(3, 3): 'c', (4, 4): 'd', (1, 1): 'a', (2, 2): 'b'}

注意: 字典是“无序的”,但是如果你想把它看作“排序的”,如果你想按键排序,请参考 这个问题,如果你想按值排序,请参考 这个问题。

如果第一个列表中的重复键映射到第二个列表中的不同值,比如1对多关系,但是您需要将这些值组合或添加,或者使用其他方法而不是更新,您可以这样做:

i = iter(["a", "a", "b", "c", "b"])
j = iter([1,2,3,4,5])
k = list(zip(i, j))
for (x,y) in k:
if x in d:
d[x] = d[x] + y #or whatever your function needs to be to combine them
else:
d[x] = y

在这个例子中,d == {'a': 3, 'c': 4, 'b': 8}