python中怎么统计字符串
时间: 2024-03-07 07:50:37 浏览: 51
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
在 Python 中,可以通过以下方法统计字符串:
1. 使用 len() 函数统计字符串长度:
```python
s = "Hello, world!"
count = len(s)
print(count) # 输出 13
```
2. 使用 count() 函数统计某个字符或子字符串出现的次数:
```python
s = "Hello, world!"
count = s.count('o')
print(count) # 输出 2
count = s.count('l')
print(count) # 输出 3
count = s.count('lo')
print(count) # 输出 1
```
3. 使用 re 模块统计字符串中满足某种模式的子字符串出现的次数:
```python
import re
s = "Hello, world!"
count = len(re.findall('o', s))
print(count) # 输出 2
count = len(re.findall('l', s))
print(count) # 输出 3
count = len(re.findall('lo', s))
print(count) # 输出 1
```
以上是几种常用的字符串统计方法,根据实际需求选择合适的方法即可。
阅读全文