gpt4 book ai didi

python - 如何检查 Python 中的字符串中是否有 *either* 个字符?

转载 作者:太空狗 更新时间:2023-10-30 01:41:30 26 4
gpt4 key购买 nike

<分区>

我知道:

if 'a' in 'cat':
win()

但是是否有更好的方法来查找字符串中是否存在两个字母中的任一个

下面是一些方法,

if 'a' in 'cat' or 'd' in 'cat':
win()

if re.search( '.*[ad].*', 'cat' ):
win()

但是有没有更干净/更快/更清晰的东西?

喜欢,

# not actual python code
if either ['a', 'd'] in 'cat':
win()

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