gpt4 book ai didi

python - 将数据添加到 Python 中的嵌套列表

转载 作者:太空狗 更新时间:2023-10-30 02:06:12 24 4
gpt4 key购买 nike

我有一个嵌套列表,例如:

nlist = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
]

在我将这个列表插入数据库之前,我想在新列的每一行中添加一个具有相同值的“列”,例如:

nlist = [
[a, 1, 2, 3],
[a, 4, 5, 6],
[a, 7, 8, 9],
]

执行此操作的最佳方法是什么,例如,当原始嵌套列表可能有数百行时?

最佳答案

为什么不更改原始列表(如果您只想这样做):

for row in nlist:
row.insert(0, a)

关于python - 将数据添加到 Python 中的嵌套列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5285521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com