gpt4 book ai didi

python - 检查字符串是否包含任何列表元素

转载 作者:行者123 更新时间:2023-12-04 16:47:16 29 4
gpt4 key购买 nike

所以我正在做一个列表的 for 循环。每一个字符串,我都想 .find,但不是 .find 一个字符串的一个项目,我想检查该字符串是否有我的列表中的任何内容。

例如。

checkfor = ['this','that','or the other'] 

然后做

string.find(checkfor) 什么的,所以我想这样做:
if email.find(anything in my checkforlist) == -1:
do action

最佳答案

I want to check that string for anything in my list



Python 有 in为了那个原因。
for s in checkfor:
if s in email:
# do action

关于python - 检查字符串是否包含任何列表元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38417161/

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