如何将多个列表合并到Python中的一个列表?

可能重复:
从Python列表中列出一个扁平列表
在Python中将列表一起join到一个列表中

我有许多名单,看起来像

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

我想要上面的样子

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

我如何做到这一点? 我对python很陌生。

只需添加它们:

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

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

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

只是另一种方法….

 a = ['it'] b = ['was'] c = ['annoying'] a.extend(b) a.extend(c) # a now equals ['it', 'was', 'annoying']