如何将多个列表合并为一个列表?

我有很多清单:

['it']
['was']
['annoying']

我想把它们合并成一个单独的列表:

['it', 'was', 'annoying']
436862 次浏览

只要加上它们:

['it'] + ['was'] + ['annoying']

你应该阅读 Python 教程来学习这样的基本信息。

a = ['it']
b = ['was']
c = ['annoying']


a.extend(b)
a.extend(c)


# a now equals ['it', 'was', 'annoying']
import itertools
ab = itertools.chain(['it'], ['was'], ['annoying'])
list(ab)

只是另一种方法..。