python 中使用字典对列表中的元素进行计数,简单的方法是遍历列表并将每个元素用作字典的键,如果该键已存在于字典中,则其相应的值将递增;如果字典中不存在该键,则将其添加值为 1。
lst = ['a', 'b', 'c', 'b', 'a', 'c', 'a'] dct = {} for item in lst: if item in dct: dct[item] = 1 else: dct[item] = 1 print(dct)
输出:
{'a': 3, 'b': 2, 'c': 2}
使用 list.count() 进行计数
count() 方法用于统计某个元素在列表中出现的次数。
lst = ['a', 'b', 'c', 'b', 'a', 'c', 'a'] dct = {} for item in lst: dct[item] = lst.count(item) print(dct)
使用 dict.get() 进行计数
python 字典 get() 函数返回指定键的值。如果键不在字典中返回默认值 0。
lst = ['a', 'b', 'c', 'b', 'a', 'c', 'a'] dct = {} for item in lst: dct[item] = dct.get(item, 0) 1 print(dct)
使用 operator.countof() 进行计数
operator 模块的 countof()方法计算列表中给定值的出现次数。
import operator lst = ['a', 'b', 'c', 'b', 'a', 'c', 'a'] dct = {} for item in lst: dct[item] = operator.countof(lst, item) print(dct)
使用 collections.counter 进行计数
collections模块包含了一些特殊的容器,counter() 可以支持方便、快速的计数,将元素数量统计,然后计数并返回一个字典。
from collections import counter lst = ['a', 'b', 'c', 'b', 'a', 'c', 'a'] dct = counter(lst) print(dict(dct))
到此这篇关于python中使用字典对列表中的元素进行计数的文章就介绍到这了,更多相关python 元素计数内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!