gpt4 book ai didi

python - 将特定整数 append 到嵌套列表 - Python

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

我有一个嵌套列表,A = [[1, 2, 3], [5, 2, 7], [4, 8, 9]]。我想在 list A 中添加数字 1, 2, 3A = [[1, 2, 3, 1], [5, 2 , 7, 2], [4, 8, 9, 3]] 等等(这只是一个较短的版本)。我使用我编写的代码进行了相同的尝试:

i = 0
j = 0
#number_nests = number of nested lists
for i in range(0, number_nests):
for j in A:
j.append(i)

print(A)

这是我得到的输出,因为我是新手,所以我有点卡住了:[[1, 90, 150, 0, 1, 2, 3], [2, 100, 200, 0, 1, 2, 3], [4, 105, 145, 0, 1, 2, 3 ], [3, 110, 190, 0, 1, 2, 3]]。我试图在没有 numpy 的情况下做到这一点。

最佳答案

A = [[1, 2, 3], [5, 2, 7], [4, 8, 9]]
i=1
for val in A:
val.append(i)
i += 1

关于python - 将特定整数 append 到嵌套列表 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30499458/

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