首页 > 编程语言 > 详细

Python Collections

时间:2020-01-24 20:31:19      阅读:114      评论:0      收藏:0      [点我收藏+]

原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12232548.html

 

collections模块提供了一些可以替换Python标准内建容器如dict、list、set和tuple等的选择。

Counter类型

它是dict的子类,提供了可哈希对象的计数功能。

假设需要统计某个字符串列表中重复项出现的次数,只要实现如下代码即可

from collections import Counter

counter = Counter()

for lang in [python, java, python, nodejs, python, nodejs]:
    counter[lang] += 1

print(counter)

console output

Counter({python: 3, nodejs: 2, java: 1})

 

Reference

https://docs.python.org/3/library/collections.html

Python Collections

原文:https://www.cnblogs.com/agilestyle/p/12232548.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!