我是靠谱客的博主 小巧龙猫,最近开发中收集的这篇文章主要介绍from collections import Counter(python中自带的计数器,非常便利),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
from collections import Counter
type(Counter)
type类型,本身是type类型。
例如:
- txt=“from collections import Counter”
count=Counter(text)
Counter({‘o’: 5, ‘r’: 3, ’ ': 3, ‘t’: 3, ‘m’: 2, ‘c’: 2, ‘l’: 2, ‘e’: 2, ‘i’: 2, ‘n’: 2, ‘f’: 1, ‘s’: 1, ‘p’: 1, ‘C’: 1, ‘u’: 1})
- txt=“from collections import Counter”
count=Counter(text.split())
Counter({‘from’: 1, ‘collections’: 1, ‘import’: 1, ‘Counter’: 1})
- txt=“from collections import Counter”
count=Counter(txt)
print(count.most_common())
[(‘o’, 5), (‘r’, 3), (’ ', 3), (‘t’, 3), (‘m’, 2), (‘c’, 2), (‘l’, 2), (‘e’, 2), (‘i’, 2), (‘n’, 2), (‘f’, 1), (‘s’, 1), (‘p’, 1), (‘C’, 1), (‘u’, 1)]
4.txt=“from collections import Counter” (排名前两名的)
count=Counter(txt)
print(count.most_common(2))
[(‘o’, 5), (‘r’, 3)]
最后
以上就是小巧龙猫为你收集整理的from collections import Counter(python中自带的计数器,非常便利)的全部内容,希望文章能够帮你解决from collections import Counter(python中自带的计数器,非常便利)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复