将一个列表附加到另一个列表

时间:2019-09-25 19:45:17

标签: python

我有listA和listB。我希望能够将listB附加到listA。

使用extend关键字时出现一些问题。我不确定我使用的方式是否正确。

listA = ['1.2.4.4.5']
listB = ["this is the first", "this is the second"]

我希望能够得到以下输出:

res = [1.2.4.4.5.["this is the first", "this is the second"]]

任何帮助将不胜感激。

谢谢。

2 个答案:

答案 0 :(得分:3)

非常令人困惑的输出,但是您可以进入

listA[0] +"."+ str(listB) 

输出:

 "1.2.4.4.5.['this is the first', 'this is the second']"

答案 1 :(得分:0)

listA.extend(listB) 

扩展listA,它不返回结果

因此,如果要合并它们,只需使用

listA.extend(listB) 

然后

res = listA