编写一个程序,计算字符串中子串出现的次数
时间: 2023-04-26 11:00:24 浏览: 129
python实现计算字符串中子串出现的次数
5星 · 资源好评率100%
可以使用Python中的count()函数来计算字符串中子串出现的次数。具体代码如下:
```python
string = "hello world, hello python, hello AI"
substring = "hello"
count = string.count(substring)
print(count)
```
输出结果为:
```
3
```
其中,string为原始字符串,substring为要查找的子串,count为子串出现的次数。
阅读全文