gpt4 book ai didi

python - Python 中带有条件的列表生成器

转载 作者:行者123 更新时间:2023-11-30 23:04:20 24 4
gpt4 key购买 nike

我如何将所有条件设置为一个列表并在字符串中搜索它?

name = [s for s in files if (("реес")   in s.lower() or ("m&s")   in s.lower()  )and 
("элект") not in s.lower() and
("сво") not in s.lower() and
("кхп") not in s.lower() and
("rar") not in s.lower() and
("пор") not in s.lower() and
("инф") not in s.lower() and
("бум") not in s.lower() and
("доп") not in s.lower() and
("msg") not in s.lower() and
("сро") not in s.lower() and
("ank") not in s.lower()]

最佳答案

您可以使用嵌套条件。

[s for s in files if all(val not in s.lower() for val in ('abc', 'def', 'ghi'))]

关于python - Python 中带有条件的列表生成器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33755402/

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