python中统计列表中元素出现的频率:使用collections.Counter类统计列表元素出现次数
1、collections.Counter类作用
用于统计字符串中字符出现的个数,以字符为key,以数量为value。
2、调用方法
count = Counter(参数).most_common()
说明:most_common()中可以添加数字,即为在排序后输出前几个数据,不添加数据则输出全部。
3、返回值
返回一个列表。
4、使用实例
from collections import Counter list1 = ['1', '1', '2', '3', '1', '4'] count = Counter(list1) print(count) # 输出 Counter({'1': 3, '2': 1, '3': 1, '4': 1}) print(count['1']) # 输出 3 print(count.most_common(1))# 出现最多次数的 # [('1', 3)]
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试