用Python编写一个程序,计算字符串中子串出现的次数
时间: 2024-05-06 14:20:42 浏览: 123
python实现计算字符串中子串出现的次数
5星 · 资源好评率100%
可以使用Python中的count函数,该函数可以用于计算一个字符串中某个子串出现的次数。示例代码如下:
```python
string = 'hello world, hello python, hello world'
sub_string = 'hello'
count = string.count(sub_string)
print(count)
```
输出结果为:
```
3
```
表示子串'hello'在字符串中出现了3次。
阅读全文