gpt4 book ai didi

python - 如何在 Python 中检查字符串中的某个字母?

转载 作者:IT老高 更新时间:2023-10-28 20:25:00 25 4
gpt4 key购买 nike

我如何告诉 Python 检查下面的字母 x,然后打印"is"?以下是我到目前为止所拥有的......

dog = "xdasds"
if "x" is in dog:
print "Yes!"

最佳答案

使用 in 关键字而不使用 is

if "x" in dog:
print "Yes!"

如果您想检查某个字符是否不存在,请使用 not in:

if "x" not in dog:
print "No!"

关于python - 如何在 Python 中检查字符串中的某个字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4877844/

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