python编写一个程序,计算字符串中子串出现的次数。
时间: 2024-04-29 19:27:09 浏览: 159
python实现计算字符串中子串出现的次数
5星 · 资源好评率100%
好的,这个问题可以回答。您可以使用Python中的 count() 方法来实现计算字符串中子串出现的次数,例如:
```python
s = "hello world, hello python, hello AI"
sub_str = "hello"
count = s.count(sub_str)
print("子串在字符串中出现的次数为:", count)
```
输出结果为:子串在字符串中出现的次数为:3。
阅读全文