python Counter
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Counter相关的知识,希望对你有一定的参考价值。
from collections import Counter
a=[1,2,3,3,3,3,3,5,6,7,7,7,8,8]
Counter(a)
Counter(1: 1, 2: 1, 3: 5, 5: 1, 6: 1, 7: 3, 8: 2)
mostn=Counter(a).most_common(2)
mostn
Out[185]: [(3, 5), (7, 3)]
mostn[0][0]
Out[186]: 3
mostn[0][1]
Out[187]: 5
mostn[1][0]
Out[188]: 7
mostn[1][1]
Out[189]: 3
以上是关于python Counter的主要内容,如果未能解决你的问题,请参考以下文章