最佳答案
如何在Python中连接两个列表?
示例:
listone = [1, 2, 3]listtwo = [4, 5, 6]
预期成果:
>>> joinedlist[1, 2, 3, 4, 5, 6]