在Python中,如何将元组列表加入一个列表?

参见英文答案 > How to make a flat list out of list of lists                                    42个
继我之前的问题How to group list items into tuple?

例如,如果我有一个元组列表

a = [(1,3),(5,4)]

如何解压缩元组并将其重新格式化为单个列表

b = [1,3,5,4]

我认为这也与iter功能有关,但我真的不知道如何做到这一点.请赐教.

解决方法:

b = [i for sub in a for i in sub]

那就行了.

上一篇:python – 使用list / tuple元素作为键创建字典


下一篇:python – matplotlib 2d line line,= plot comma含义