gpt4 book ai didi

Python处理字符串匹配

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

有这样一个字符串:

mystr = 'account_id 37318 not found'

我想知道如何写一个比以下更好的条件:

if 'account_id' not in str and 'not found' not in str:
doSomething()

我想一定是这样的:

if 'account_id' + %any substring% + 'not found' not in str:
doSomething()

可能正则表达式会有所帮助,但我不擅长使用它。

提前谢谢你。

最佳答案

您可以使用 all并且不要使用内置关键字作为变量名。

if all(i not in s for i in ('not found', 'account_id')):

例子:

>>> tr = 'account_id 37318 not found'
>>> tr1 = '2735723'
>>> all(i not in tr for i in ('not found', 'account_id'))
False
>>> all(i not in tr1 for i in ('not found', 'account_id'))
True
>>>

关于Python处理字符串匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32050731/

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