我是靠谱客的博主 光亮宝马,最近开发中收集的这篇文章主要介绍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的全部内容,希望文章能够帮你解决python Counter所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部