使用字典dict()(推荐学习:Python视频教程)
循环遍历出一个可迭代对象中的元素,如果字典没有该元素,那么就让该元素作为字典的键,并将该键赋值为1,如果存在就将该元素对应的值加1.
psts = ['a','a','b',5,6,7,5]
count_dict = dict()
for item in psts:
if item in count_dict:
count_dict[item] += 1
else:
count_dict[item] = 1
使用defaultdict()
defaultdict(parameter)可以接受一个类型参数,如str,int等,但传递进来的类型参数,不是用来约束值的类型,更不是约束键的类型,而是当键不存在的话,实现一种值的初始化
defaultdict(int):初始化为 0
defaultdict(float):初始化为 0.0
defaultdict(str):初始化为 ”
from collections import defaultdict
psts = ['a', 'a', 'b', 5, 6, 7, 5]
count_dict = defaultdict(int)
for item in psts:
count_dict[item] += 1
使用集合(set)和列表(pst)
先使用set去重,然后循环的把每一个元素和每一个元素对应的次数psts.count(item)组成一个元组放在列表里面
psts = ['a', 'a', 'b', 5, 6, 7, 5]
count_set = set(psts)
count_pst = pst()
for item in count_set:
count_pst.append((item,psts.count(item))
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是小编分享的关于python怎么计数的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!