该计数器对象是一个子类的字典中.
Counter是用于计算可哈希对象的dict子类.它是一个无序集合,其中元素存储为字典键,其计数存储为字典值.
您可以像访问另一个字典一样访问元素:
>>> from collections import Counter >>> theList = ['blue', 'red', 'blue', 'yellow', 'blue', 'red'] >>> newList = Counter(theList) >>> newList['blue'] 3
如果要打印键和值,可以执行以下操作:
>>> for k,v in newList.items(): ... print(k,v) ... blue 3 yellow 1 red 2