将列表元素附加到python中的列表列表
问题描述
鉴于以下列表:
list1 = [[1, 2],
[3, 4],
[5, 6],
[7, 8]]
list2 = [10, 11, 12, 13]
更改 list1
使其成为 python 中的以下列表的最佳方法是什么?
What is the best way to change list1
so it becomes the following list in python?
[[1, 2, 10],
[3, 4, 11],
[5, 6, 12],
[7, 8, 13]]
解决方案
可以使用zip
:
[x + [y] for x, y in zip(list1, list2)]
# [[1, 2, 10], [3, 4, 11], [5, 6, 12], [7, 8, 13]]
要修改 list1
,你可以这样做:
To modify list1
in place, you could do:
for x, y in zip(list1, list2):
x.append(y)
list1
# [[1, 2, 10], [3, 4, 11], [5, 6, 12], [7, 8, 13]]
相关文章