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))
字符串计数
原文:http://www.cnblogs.com/leisurelyRD/p/7469753.html