判断一个字符串在另一个字符串
时间: 2023-10-31 10:16:39 浏览: 90
中出现的次数,该怎么做?
您好,根据您的要求,您可以使用 Python 中的 count 方法来统计一个字符串在另一个字符串中出现的次数。该方法会返回指定字符串在目标字符串中出现的次数。以下是使用 count 方法的示例代码:
```python
str1 = "hello world"
str2 = "l"
count = str1.count(str2)
print(count) # 输出结果为 3
```
在上述示例中,我们统计了字符串 "l" 在字符串 "hello world" 中出现的次数,得到的结果为 3。希望这个回答可以帮助到您。
阅读全文