编写一个python程序,计算字符串中子串出现次数
时间: 2023-03-25 22:02:22 浏览: 134
python实现计算字符串中子串出现的次数
5星 · 资源好评率100%
你好,我是 C 知道,可以回答你的问题。以下是计算字符串中子串出现次数的 Python 程序:
```python
def count_substring(string, sub):
count =
for i in range(len(string)):
if string[i:i+len(sub)] == sub:
count += 1
return count
string = "hello world, world is beautiful"
sub = "world"
print(count_substring(string, sub)) # 输出 2
```
希望能帮到你!
阅读全文