我有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"]]
任何帮助将不胜感激。
谢谢。
答案 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