统计字符串出现的次数
时间: 2023-07-25 12:03:30 浏览: 65
一个字符串中出现次数最多的字符 统计这个次数【实现代码】
你想要统计一个字符串在另一个字符串中出现的次数吗?如果是的话,可以使用 Python 中的 count() 方法来实现。示例如下:
```python
string = "hello world, hello python, hello AI"
sub_string = "hello"
count = string.count(sub_string)
print("子字符串出现的次数为:", count)
```
输出:
```
子字符串出现的次数为: 3
```
在上面的代码中,我们定义了一个字符串 `string` 和一个子字符串 `sub_string`,然后使用 `count()` 方法统计子字符串在原字符串中出现的次数并赋值给变量 `count`,最后输出统计结果。
阅读全文