统计字符串中出现某个字符串的次数
>>> "abc33aef".count("a")
2
>>>
统计所有字符分别出现的次数
>>> from collections import Counter
>>> Counter("abc33aef")
Counter({'a': 2, '3': 2, 'b': 1, 'c': 1, 'e': 1, 'f': 1})
Counter 是字典的子类,可以像字典一样使用
>>> c = Counter("abc33aef")
>>> c['a']
2
>>> c['b']
1
关注公众号「Python之禅」,回复「1024」免费获取Python资源