关于python:python-解包列表

Python - unpack list of lists

本问题已经有最佳答案,请猛点这里访问。

最干净的方法是什么?

1
2
list = [list1, list2, ...]
return [*list1, *list2, ...]

看起来这个语法在Python3.5中是可用的。同时,你的解决方案是什么?


这通常写为:

1
[x for l in list for x in l]