在 python 中加入列表中的列表

Joining lists in list together in python

愚蠢的基本问题,但我有以下列表:

[[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1]]

我如何将元素连接在一起,以便显示:

[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1]

干杯!

import itertools
a = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1]]
print list(itertools.chain.from_iterable(a))

希望对您有所帮助。