原题: https://segmentfault.com/q/1010000005904259 问题: 倘若存在 L=[ [1,2,3],[4,5,6],[7,8,9]] 这样的列表,如何把合并成[1,2,3,4,5,6,7,8,9]呢? 最直接的方法(By:松林) ret = [] for x in L: ret += x print(x) 使用标准库中的itertools模块(By:dokelung) from itertools import chain lst = list(chain(…