统计字符串出现的次数python
时间: 2023-11-11 07:04:31 浏览: 75
Python统计字符出现的次数
可以使用Python内置的count()函数来统计字符串中指定字符或子字符串出现的次数,例如:
```python
string = "hello world"
count = string.count("o")
print(count) # 输出 2
```
另外,也可以使用正则表达式来实现字符串的匹配和计数,例如:
```python
import re
string = "hello world"
count = len(re.findall("o", string))
print(count) # 输出 2
```
这里使用了re模块的findall()函数来查找所有匹配的子字符串,然后通过len()函数来统计匹配的数量。
阅读全文