统计字符串中每个字母出现的次数
时间: 2023-08-29 08:06:30 浏览: 95
C语言程序设计-分别统计字符串中字母、数字、空格和其他字符出现的次数(字符长度小于80);.c
5星 · 资源好评率100%
可以使用 Python 内置的字典来统计字符串中每个字母出现的次数。
```python
string = "example string"
count = {}
for s in string:
if s in count:
count[s] += 1
else:
count[s] = 1
print(count)
```
也可以使用collections.Counter()
```python
from collections import Counter
string = "example string"
count = Counter(string)
print(count)
```
结果为:{'e': 2, 'x': 1, 'a': 1, 'm': 1, 'p': 2, 'l': 1, 's': 1, 't': 1, 'r': 1, 'i': 1, 'n': 1, 'g': 1}
阅读全文