标签:http io os ar sp on cti html ef
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
标签:http io os ar sp on cti html ef
原文地址:http://www.cnblogs.com/hope100/p/4045891.html