我正在尝试列出 11 个元素
我只想从 to 弹出最大l[0]
元素l[5]
。在以下两种情况之一:
l[5] >= 3
orl[5]
不再存在 or None
。
l = [2,8,6,2,8,7,9,8,6,7,4]
max = 0
maxIndex = 0
while (l[5] >= 3 or l[5] is None):
for x in range(6):
if l[x] > max:
max = l[x]
maxIndex = x
l.pop(maxIndex)
print(l)
我收到错误消息:
IndexError: list index out of range
我知道在某些时候l[5]
将不再存在,但我怎样才能创建这个代码。