gpt4 book ai didi

python - 列表内列表python

转载 作者:行者123 更新时间:2023-11-28 19:22:09 25 4
gpt4 key购买 nike

我不想在列表中获取列表,而只是想添加零但不知道如何添加。看代码

def  myconv(x,h):
q=[]
print(h)
for i in range(len_h):
q.append(h[len_h-1-i])
print(q)
q.insert(0,([0]*len_h)) #I want this to add just plain zeros to the array... not an array insdie an
#like it is doing here
q.insert(len(q)+1,(0]*len_h))

print(q)

print(myconv([6,7,8,9],[1,2,3,4,5,6,7,8,9,0]))

最佳答案

你想使用+,例如[0, 0, 0] + [2, 1, 3] == [0, 0, 0, 2, 1, 3],将数组连接到第一个。否则,您将需要一次插入(或追加)一项。

关于python - 列表内列表python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22572789/

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