python 判断字符串是否包含指定字符串
时间: 2024-01-04 11:03:35 浏览: 86
python判断字符串是否包含子字符串的方法
以下是两种判断字符串是否包含指定字符串的方法:
1. 使用in运算符(推荐使用)
```python
def demo():
str1 = "b"
str2 = "abc"
if str1 in str2:
print("存在")
else:
print("不存在")
demo()
```
输出结果为:存在
2. 使用find方法
```python
def demo():
str1 = "a"
str2 = "abc"
if str2.find(str1) >= 0:
# 包含的话,返回第一次出现的位置,位置下标是从0开始,没有的话为负数
print("包含")
else:
print("不包含")
demo()
```
输出结果为:包含
阅读全文