码迷,mamicode.com
首页 > 编程语言 > 详细

python计数器Count

时间:2016-08-15 18:52:59      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:

python计数器Count

 1 # python计数器Counter
 2 # 需导入模块collections
 3 import collections
 4 
 5 # 统计各个字符出现的次数,以字典形式返回
 6 obj = collections.Counter(adfsdfsdfswrwerwegfhgfhgh)
 7 print obj
 8 
 9 # 按参数给定的个数返回
10 print obj.most_common(4)
# 执行结果显示
Counter({f: 5, d: 3, g: 3, h: 3, s: 3, w: 3, e: 2, r: 2, a: 1})
[(f, 5), (d, 3), (g, 3), (h, 3)]

 

python计数器Count

标签:

原文地址:http://www.cnblogs.com/mjoy/p/5773975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!