首页 > 代码库 > python collections 库的学习

python collections 库的学习

import collections

注意 counter用的时候要大写,

Counter是说统计一个List中的对象出现的次数,然后以Counter的形式返回

例如http://stackoverflow.com/questions/3172173/most-efficient-way-to-calculate-frequency-of-values-in-a-python-list

>>> from collections import Counter>>> L=[‘a‘,‘b‘,‘a‘,‘b‘]>>> print(Counter(L))Counter({‘a‘: 2, ‘b‘: 2})>>> print(Counter(L).items())dict_items([(‘a‘, 2), (‘b‘, 2)])

这一Counter返回形式的特殊性,可以通过values来访问其中的元素。
具体的可以再看文档https://docs.python.org/2/library/collections.html

python collections 库的学习