发布于 5年前
Python 中如何检测某个字符串包含其他字符串?
可以使用 in 关键词:
"test" in "testtext"
True
"test" not in "testtext"
False
注意 in 是大小写敏感:
"abc" in "Abc"
False
"abc" not in "Abc"
True
in 还可以这样使用:
"abc" in ["abc", "def", "ghi"]
True
可以使用 in 关键词:
"test" in "testtext"
True
"test" not in "testtext"
False
注意 in 是大小写敏感:
"abc" in "Abc"
False
"abc" not in "Abc"
True
in 还可以这样使用:
"abc" in ["abc", "def", "ghi"]
True