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 使用率