counter的使用

Posted rise0111

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了counter的使用相关的知识,希望对你有一定的参考价值。

参考博客

from collections import Counter
a = Counter([i for i in "fdfjkdajfka"])  #初始化传入可迭代的类型  Counter会自动实现对其元素的计数,并存储在字典内
#如果加入新的计数元素使用update方法
a.updata([12,3,4,2])
# 返回计数的前n个元素
a.most_common(3)  # 返回只包含计数前三位的字典

以上是关于counter的使用的主要内容,如果未能解决你的问题,请参考以下文章

PowerShell Get-Counter 命令,-ComputerName 与 -Counter

PowerShell :: Get-Counter 显示错误的 CPU 使用率

使用“counter_cache”时如何调用 after_save 回调?

使用Counter进行计数统计

使用 Counter() 查找字典中的键

如何使用名称中带有 * 的 Get-Counter 选择性能计数器