编写一段python程序,统计字符串“ab2b3n5nab2n67abmm4n2”中子串“ab”出现的次数
时间: 2023-10-07 18:06:54 浏览: 56
python实现计算字符串中子串出现的次数
5星 · 资源好评率100%
可以使用Python的字符串函数count()来计数子串出现的次数。以下是示例代码:
```python
str1 = "ab2b3n5nab2n67abmm4n2"
sub_str = "ab"
count = str1.count(sub_str)
print("子串'{}'出现的次数为:{}".format(sub_str, count))
```
输出结果为:
```
子串'ab'出现的次数为:3
```
其中,`count`方法会返回子串在字符串中出现的次数。
阅读全文