已知字符串str=‘skdaskerkjsalkj’,请统计该字符串字符出现的次数用字典的方法python代码
时间: 2024-05-03 09:20:50 浏览: 71
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用Python中的字典来统计该字符串的字符出现次数,代码如下:
```
str = 'skdaskerkjsalkj'
dict = {}
for char in str:
if char in dict:
dict[char] += 1
else:
dict[char] = 1
print(dict)
```
输出结果为:
```
{'s': 2, 'k': 3, 'd': 1, 'a': 2, 'e': 1, 'r': 1, 'j': 2, 'l': 1}
```
阅读全文