Python 判断是否包含字符串
时间: 2023-04-06 08:05:14 浏览: 84
python不相等的两个字符串的 if 条件判断为True详解
5星 · 资源好评率100%
在 Python 中,可以使用 `in` 运算符来判断一个字符串是否包含另一个字符串。
例如:
```python
s1 = "Hello, World!"
s2 = "Hello"
if s2 in s1:
print("s1 包含 s2")
else:
print("s1 不包含 s2")
```
输出结果为:
```
s1 包含 s2
```
你也可以使用 `str.find()` 函数来判断字符串是否包含另一个字符串:
```python
s1 = "Hello, World!"
s2 = "Hello"
if s1.find(s2) != -1:
print("s1 包含 s2")
else:
print("s1 不包含 s2")
```
输出结果也是:
```
s1 包含 s2
```
阅读全文