最有效的方法来计算Python列表中的值的频率?

时间:2010-07-03 17:04:36

标签: python list frequency

我正在寻找一种快速有效的方法来计算python中list项的频率:

list = ['a','b','a','b', ......]

我想要一个频率计数器,它会给我一个这样的输出:

 [ ('a', 10),('b', 8) ...]

如上所示,项目应按频率降序排列。

1 个答案:

答案 0 :(得分:32)

Python2.7 +

>>> 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)])

的python2.5 / 2.6

>>> from collections import defaultdict
>>> L=['a','b','a','b']
>>> d=defaultdict(int)
>>> for item in L:
>>>     d[item]+=1
>>>     
>>> print d
defaultdict(<type 'int'>, {'a': 2, 'b': 2})
>>> print d.items()
[('a', 2), ('b', 2)]
相关问题