是否有一种将 2 个列表“合并”在一起的好方法,以便一个列表中的项目可以附加到列表中列表的末尾?例如...
a2dList=[['a','1','2','3','4'],['b','5','6','7','8'],[........]]
otherList = [9,8,7,6,5]
theFinalList=[['a','1','2','3','4',9],['b','5','6','7','8',8],[....]]
我不确定 a2dList 是否由字符串组成,而 otherList 是数字......我试过append
但我最终得到
theFinalList=[['a','1','2','3','4'],['b','5','6','7','8'],[.......],[9,8,7,6,5]