python collections
2021-03-02 01:28
标签:字典 打印 pre import 类型 font most amd element python collections 标签:字典 打印 pre import 类型 font most amd element 原文地址:https://www.cnblogs.com/huntersniper/p/14419441.html#collections 模块
#Counter 计数器,生成一个类字典类型
from collections import Counter
str="abcbcaccbbad"
#统计数量
dcamd=Counter(str)
print(dcamd)
‘‘‘
打印:Counter({‘b‘: 4, ‘c‘: 4, ‘a‘: 3, ‘d‘: 1})
‘‘‘
#按数量排序返回
print(dcamd.most_common(2))
‘‘‘
打印:[(‘b‘, 4), (‘c‘, 4)]
‘‘‘
#将其value置为0
dcamd.subtract({‘c‘: 4})
print(dcamd)
‘‘‘
打印:Counter({‘b‘: 4, ‘a‘: 3, ‘d‘: 1, ‘c‘: 0})
‘‘‘
#返回所有元素
print(list(dcamd.elements()))
‘‘‘
打印:[‘a‘, ‘a‘, ‘a‘, ‘b‘, ‘b‘, ‘b‘, ‘b‘, ‘d‘]
‘‘‘
上一篇:Java匿名内部类
下一篇:JavaScript获取当前时间
文章标题:python collections
文章链接:http://soscw.com/index.php/essay/58815.html