python 判断字符串包含
时间: 2023-09-24 10:03:05 浏览: 34
Python检测字符串中是否包含某字符集合中的字符
5星 · 资源好评率100%
你可以使用 in 关键字来判断一个字符串是否包含另一个字符串。例如:
```python
s1 = "hello world"
s2 = "world"
if s2 in s1:
print("s1 contains s2")
else:
print("s1 does not contain s2")
```
这段代码会输出 "s1 contains s2"。
阅读全文