从Python中的数组字典的Oneline填充

时间:2011-07-07 20:41:21

标签: python

我需要从数组中填充字典。我已经完成了三行,我试图尽可能做到最短。有没有办法如何用一行填充它?

a = [['test',154],['test2',256]]
d = dict()
for b in a:
    d[b[0]] = b[1]

3 个答案:

答案 0 :(得分:14)

只需dict:)

>>> a = [['test',154],['test2',256]]
>>> dict(a)
{'test': 154, 'test2': 256}

答案 1 :(得分:4)

你只做dict(a)或dict([['test',154],['test2',256]])。

答案 2 :(得分:-1)

L = [['test',154],['test2',256]]

在Python 3.x中:

d = {k:v for k,v in L}

在Python 2.x中:

d = dict([(k,v) for k,v in L])