3.已知字符串str= 'skdaskerkjsalkj',请统计该字符串中各字母出现的次数。用python
时间: 2023-05-16 14:04:56 浏览: 399
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用Python中的字典来统计字符串中各字母出现的次数,代码如下:
str = 'skdaskerkjsalkj'
count = {}
for s in str:
if s in count:
count[s] += 1
else:
count[s] = 1
print(count)
输出结果为:{'s': 3, 'k': 3, 'd': 1, 'a': 2, 'e': 1, 'r': 2, 'j': 2, 'l': 1}
这表示字符串中字母s出现了3次,字母k也出现了3次,以此类推。
阅读全文