附加到单行列表

时间:2017-07-04 13:23:09

标签: list python-3.x append

所以在Python中我想将nx1列表附加到nx2列表中的特定行。例如:

myList = [[] for _ in range(len(no_rows))]

myList[0].append(newlist_1)
myLIst[1].append(newlist_2)

,其中

len(newlist_1) != len(newlist_2)

任何想法都将不胜感激!

0 个答案:

没有答案