Python标准库——collections模块的Counter类
http://www.pythoner.com/205.html
#创建
c = collections.Counter() # 创建一个空的Counter类
c = collections.Counter('gallahad') # 从一个可iterable对象(list、tuple、dict、字符串等)创建
c = collections.Counter({'a': 4, 'b': 2}) # 从一个字典对象创建
c = collections.Counter(a=4, b=2) # 从一组键值对创建
#当所访问的键不存在时,返回0,而不是KeyError;否则返回它的计数。
c = collections.Counter("abcdefgab")
c["a"]
#计数器的更新
#计数器的更新包括增加和减少两种.其中,增加使用update()方法
c = collections.Counter('which')
c.update('witch') # 使用另一个iterable对象更新
c['h']
d = collections.Counter('watch')
c.update(d) # 使用另一个Counter对象更新
c['h']
#减少则使用subtract()方法
c = collections.Counter('which')
c.subtract('witch') # 使用另一个iterable对象更新
c['h']
d = collections.Counter('watch')
c.subtract(d) # 使用另一个Counter对象更新
c['a']
#键的删除
c = collections.Counter("abcdcba")