从嵌套列表构建元组

时间:2014-03-31 21:59:48

标签: python list

嗨,请问如何将嵌套列表中的元组附加到字典列表中,以形成新的元组列表,如下所示:

nde = [{'length': 0.35, 'modes': 'cw', 'type': '99', 'lanes': 9},
           {'length': 0.48, 'modes': 'cw', 'type': '99', 'lanes': 9},
           {'length': 0.88, 'modes': 'cw', 'type': '99', 'lanes': 9}]

dge = [[(1001, 7005),(3275, 8925)], [(1598,6009),(1001,14007)]]

如何附加它们以使结果格式化:

rslt = [(1001, 7005, {'length': 0.35, 'modes': 'cw', 'type': '99', 'lanes': 9}... ]

我试过了:

[(k1[0], k1[1], k2) for k1, k2 in zip(dge, nde)]

但它没有给出理想的结果。感谢

2 个答案:

答案 0 :(得分:4)

您需要首先展平列表列表,然后将其与zip

一起使用
>>> from itertools import chain
>>> [(k1[0], k1[1], k2) for k1, k2 in zip(chain.from_iterable(dge), nde)]
[(1001, 7005, {'lanes': 9, 'length': 0.35, 'type': '99', 'modes': 'cw'}),
 (3275, 8925, {'lanes': 9, 'length': 0.48, 'type': '99', 'modes': 'cw'}),
 (1598, 6009, {'lanes': 9, 'length': 0.88, 'type': '99', 'modes': 'cw'})]

文档:itertools.chain.from_iterable

答案 1 :(得分:3)

你有嵌套列表,所以你应该在ziping之前展平它们:

import itertools
[(k1[0], k1[1], k2) for k1, k2 in zip(itertools.chain(*dge), nde)]