python实战-字典使用
使用字典统计字符出现次数
#! /usr/bin/env python
#coding:utf-8
#定义一个函数,接收字符串,统计出每个字符的出现次数
#实现思路:字典实现,看字符是否在字典中,不在则计入字典,否则+1。
def histogram(str):
dic = dict()
for c in str:
if c not in dic:
dic[c] = 1 #add
else:
dic[c]+=1 #update
return dic
print histogram(‘helloworld‘)
时间: 2024-10-26 16:56:56