gpt4 book ai didi

python - 在列表理解中使用 OR

转载 作者:行者123 更新时间:2023-12-01 05:13:40 25 4
gpt4 key购买 nike

对于我的一生,我无法弄清楚为什么这行不通。我正在尝试获取列表的总和,但是如果列表包含值 13,则应从总和中排除该值,并且以下值也应排除。例如,[1,13,3] 将为 1,[13,2,5] 将为 5。

我一直在尝试这个列表理解:

lst = [3,3,13]
sum([lst[i] for i in range(len(lst)) if not lst[i] == 13 or not lst[i-1] == 13])

OR 似乎没有像我预期的那样工作。如果我删除 OR 语句的任何一部分,它就会完全正常工作。示例

>>> lst = [3,3,13]
>>> [lst[i] for i in range(0,3) if not lst[i] == 13]
[3, 3]
>>> [lst[i] for i in range(len(lst)) if not lst[i] == 13 or not lst[i-1] == 13]
[3, 3, 13]

最佳答案

您的代码中有两个错误。

  1. 如果最后一个元素是 13,则不会添加第一个元素,因为由于 Python 的索引环绕,lst[0-1] == 13
  2. 正如评论和其他答案中所述,您应该使用 and,而不是 or。这是因为De Morgan's laws .

然后,生成的代码是

sum([lst[i] for i in range(len(lst)) if not lst[i] == 13 and not(i > 0 and lst[i-1] == 13)])

关于python - 在列表理解中使用 OR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23644873/

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