字符串计数

import pprint
text = "aaaa bbbb ccc dd ee ff gg h i j kkkk"

count = {}

for i in text:
    count.setdefault(i,0)
    count[i] = count[i] + 1

# pprint.pprint(count)
print(pprint.pformat(count))
原文地址:https://www.cnblogs.com/leisurelyRD/p/7469753.html