gpt4 book ai didi

python : IndexError: list assignment index out of range

转载 作者:行者123 更新时间:2023-11-28 22:30:03 29 4
gpt4 key购买 nike

我写了这个程序:

l = []
N = int(input("enter the size of the list"))
if N < 50:
for i in range(N):
a = int(input("add a number to the list"))
l.append(a)
for i in range(N):
del l[min(l)]
print(l)

当我运行它时,他们说

Traceback (most recent call last): 
File "<pyshell#5>", line 2, in <module>
del l[min(l)]
IndexError: list assignment index out of range

请问你有什么解决办法吗??

最佳答案

您的问题是 del l[min(l)] 试图引用索引 min(l) 处的列表项。假设您的列表中有 3 个项目:

l = [22,31,17]

尝试删除索引 min(l) 处的项目引用了索引 17,该索引不存在。只有索引 0、1 和 2 存在。

我认为您想要做的是按顺序从列表中删除最小的项目。有多种方法可以做到这一点。与您所写内容最接近的方法是:

for i in range(N):
l.remove(min(l))
print(l)

关于 python : IndexError: list assignment index out of range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42679488/

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