参见英文答案 > 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]
那就行了.