在Python中将列表转换为字典


189

假设我有一个清单 a在Python中,其条目方便地映射到字典。每个偶数元素代表字典的键,后面的奇数元素是值

例如,

a = ['hello','world','1','2']

我想将其转换为字典b

b['hello'] = 'world'
b['1'] = '2'

语法上最干净的方法是什么?


Answers:


269
b = dict(zip(a[::2], a[1::2]))

如果a很大,您可能需要执行以下操作,而不会像上面那样创建任何临时列表。

from itertools import izip
i = iter(a)
b = dict(izip(i, i))

在Python 3中,您也可以使用dict理解,但具有讽刺意味的是,我认为最简单的方法是使用range()and len(),通常是代码味道。

b = {a[i]: a[i+1] for i in range(0, len(a), 2)}

因此iter()/izip(),尽管EOL在注释中指出,该方法可能仍是Python 3中使用最多的Python语言,但在Python 3 zip()中已经很懒了,因此您不需要izip()

i = iter(a)
b = dict(zip(i, i))

如果您只想一行,就必须作弊并使用分号。;-)


9
…或者简单地说zip(i, i),在Python 3中,因为zip()现在返回一个迭代器。
Eric O Lebigot 2011年

5
请注意,Python 2.7.3也具有dict理解功能
user1438003 2012年

56

简单的答案

另一种选择(礼貌亚历克斯·马尔泰利 - ):

dict(x[i:i+2] for i in range(0, len(x), 2))

相关说明

如果您有这个:

a = ['bi','double','duo','two']

并且您想要这样做(列表中的每个元素都键入一个给定值(本例中为2)):

{'bi':2,'double':2,'duo':2,'two':2}

您可以使用:

>>> dict((k,2) for k in a)
{'double': 2, 'bi': 2, 'two': 2, 'duo': 2}

2
这仅适用于Python 3吗?
塔加尔

2
使用fromkeys>>> dict.fromkeys(a, 2) {'bi': 2, 'double': 2, 'duo': 2, 'two': 2}
Gdogg

1
这是在做其他事情,而不是问题要问的。
奥兹

17

您可以很容易地使用dict理解:

a = ['hello','world','1','2']

my_dict = {item : a[index+1] for index, item in enumerate(a) if index % 2 == 0}

这等效于下面的for循环:

my_dict = {}
for index, item in enumerate(a):
    if index % 2 == 0:
        my_dict[item] = a[index+1]

10

我觉得很酷,这是如果您的清单只有2个项目:

ls = ['a', 'b']
dict([ls])
>>> {'a':'b'}

请记住,dict接受任何包含iterable的iterable,其中iterable中的每个项目本身必须是恰好有两个对象的iterable。


快速简单的方法,只需添加如果列表包含两个以上的项目,则使用dict(ls)而不是dict([ls])。例如,如果ls = ['a','b','c','d']然后dict(ls)
ankit tyagi

1
尼斯和时尚。“可迭代项中的每个项目本身都必须是具有两个对象的可迭代项。” 是这里的关键事实。
阿披耶特(Abhijeet)

4

可能不是最pythonic的,但是

>>> b = {}
>>> for i in range(0, len(a), 2):
        b[a[i]] = a[i+1]

10
阅读有关enumerate
SilentGhost

5
枚举不允许您指定步长,但可以使用for i, key in enumerate(a[::2]):。不过unpythonic因为字典构造能为你做的大部分工作在这里
约翰·拉ROOY

@ SilentGhost,gnibbler:非常感谢您开阔了我的视野!我一定会在将来尽可能多地合并它!
sahhhm

@gnibbler:您能否解释一下该for i, key in enumerate(a[::2]):方法的工作原理?生成的对值将为0 hello1 1,我不清楚如何使用它们来产生{'hello':'world', '1':'2'}
martineau 2011年

1
@martineau,您是正确的。我想我一定意味enumerate(a)[::2]
约翰·拉ROOY

4

您可以非常快地完成此操作,而无需创建额外的数组,因此即使在非常大的数组中也可以使用:

dict(izip(*([iter(a)]*2)))

如果您有发电机a,甚至更好:

dict(izip(*([a]*2)))

以下是摘要:

iter(h)    #create an iterator from the array, no copies here
[]*2       #creates an array with two copies of the same iterator, the trick
izip(*())  #consumes the two iterators creating a tuple
dict()     #puts the tuples into key,value of the dictionary

这将使字典具有相同的键和值对({'hello':'hello','world':'world','1':'1','2':'2'}
mik

不,一切正常。请仔细阅读。它说:“如果有发电机...”,如果没有发电机,只需使用第一行。第二种是一种替代方法,如果您有一个生成器而不是一个列表,那么它很有用,就像大多数时候那样。
topkara '18

1

您也可以这样操作(在此将字符串转换为列表,然后转换为字典)

    string_list = """
    Hello World
    Goodbye Night
    Great Day
    Final Sunset
    """.split()

    string_list = dict(zip(string_list[::2],string_list[1::2]))

    print string_list


0

我不确定这是否是pythonic,但似乎可以正常工作

def alternate_list(a):
   return a[::2], a[1::2]

key_list,value_list = alternate_list(a)
b = dict(zip(key_list,value_list))

0

试试下面的代码:

  >>> d2 = dict([('one',1), ('two', 2), ('three', 3)])
  >>> d2
      {'three': 3, 'two': 2, 'one': 1}

0

您也可以尝试这种方法将键和值保存在其他列表中,然后使用dict方法

data=['test1', '1', 'test2', '2', 'test3', '3', 'test4', '4']

keys=[]
values=[]
for i,j in enumerate(data):
    if i%2==0:
        keys.append(j)
    else:
        values.append(j)

print(dict(zip(keys,values)))

输出:

{'test3': '3', 'test1': '1', 'test2': '2', 'test4': '4'}

0
{x: a[a.index(x)+1] for x in a if a.index(x) % 2 ==0}

result : {'hello': 'world', '1': '2'}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.