怎么获取字符串的的字母出现次数
时间: 2023-09-08 22:11:50 浏览: 77
获取字符在字符串中出现的次数
可以使用 Python 内置的 collections 模块中的 Counter 类来实现。具体的实现代码如下:
```python
from collections import Counter
s = "hello world"
count = Counter(s)
print(count)
```
输出结果为:
```
Counter({'l': 3, 'o': 2, 'e': 1, 'h': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
```
其中,Counter 对象会统计字符串 s 中各个字符出现的次数,并以字典的形式返回。
阅读全文