gpt4 book ai didi

python - 从 Python 中的未知列表中删除底片

转载 作者:太空宇宙 更新时间:2023-11-04 01:18:23 25 4
gpt4 key购买 nike

在 Python 中工作,我将如何编写代码以使用 for 循环和 if 语句从未知整数列表中删除负数?

def mod_lis (list):
for i in range(len(list)):
if list[i] < 0:
del list[i]
return list

最佳答案

您的代码的问题在于您在 for 循环期间修改了列表。结果是您以这种方式跳过元素并很快收到 IndexError,因为您的列表已被缩短。

你可以用这个列表理解来做到这一点:

mylist = [val for val in mylist if val>=0]

关于python - 从 Python 中的未知列表中删除底片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22856334/

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