标签: 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)
任何想法都将不胜感激!
保