PYTHON】统计字符串中每个字丹出现的次数
时间: 2023-12-20 14:04:34 浏览: 78
统计一个字符串中每个字符出现的次数
好的,针对您的问题,可以使用Python内置的collections模块中的Counter类来进行字符串中每个字符出现次数的统计,具体代码如下:
```python
from collections import Counter
str = "hello world"
char_count = Counter(str)
print(char_count)
```
输出结果为:
```
Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
```
其中,Counter类的实例对象char_count中,每个键代表该字符,每个值代表该字符出现的次数。
阅读全文