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

python collections 库的学习

时间:2014-10-23 16:15:19      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   ar   sp   on   cti   html   ef   

import collections

注意 counter用的时候要大写,

Counter是说统计一个List中的对象出现的次数,然后以Counter的形式返回

例如http://stackoverflow.com/questions/3172173/most-efficient-way-to-calculate-frequency-of-values-in-a-python-list

>>> from collections import Counter
>>> L=[‘a‘,‘b‘,‘a‘,‘b‘]
>>> print(Counter(L))
Counter({‘a‘: 2, ‘b‘: 2})
>>> print(Counter(L).items())
dict_items([(‘a‘, 2), (‘b‘, 2)])

这一Counter返回形式的特殊性,可以通过values来访问其中的元素。
具体的可以再看文档https://docs.python.org/2/library/collections.html

python collections 库的学习

标签:http   io   os   ar   sp   on   cti   html   ef   

原文地址:http://www.cnblogs.com/hope100/p/4045891.html

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