统计字符串中每个字符出现的次数(Python)

#统计字符串中每个字符出现的次数 以The quick brown fox jumps over the lazy dog为例

message='The quick brown fox jumps over the lazy dog'
count={}
for character in message:
count.setdefault(character,0)
count[character]=count[character]+1 print(count)

参考:《Python编程快速上手--》

上一篇:利用HashMap计算一个字符串中每个字符出现的次数


下一篇:解决openssh漏洞,升级openssh版本