美文网首页python碎碎念
python Counter排序

python Counter排序

作者: 你说你要一场 | 来源:发表于2019-06-14 11:27 被阅读0次
    from collections import Counter
    detail = Counter(some_list)
    
    # 最多的前十个
    detail.most_common(10)
    
    # 不加参数,对整体进行排序
    detail.most_common()
    

    相关文章

      网友评论

        本文标题:python Counter排序

        本文链接:https://www.haomeiwen.com/subject/lleufctx.html