已知字符串str='skdaskerkjsalkj',请统计该字符串中各字母出现的次数。python
时间: 2024-05-01 20:24:12 浏览: 94
Unicode和Python的中文处理
可以使用Python中的字典来实现。
代码如下:
```python
str = 'skdaskerkjsalkj'
dict = {}
for s in str:
if s in dict:
dict[s] += 1
else:
dict[s] = 1
print(dict)
```
输出结果为:
```
{'s': 3, 'k': 3, 'd': 1, 'a': 2, 'e': 1, 'r': 2, 'j': 2, 'l': 1}
```
其中,字典中的键为字符串中的字母,值为该字母出现的次数。
阅读全文