码迷,mamicode.com
首页 > 其他好文 > 详细

day11

时间:2017-06-23 18:23:15      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ram   div   color   turn   blog   int   nbsp   dict   code   

1 def histogram(s):
2     d = dict()
3     for i in s:
4         
5         d[i] = d.get(i, 0)
6         d[i] = d[i] + 1
7     return d
8             
9 print(histogram(fuckfuckfuck))

 

day11

标签:ram   div   color   turn   blog   int   nbsp   dict   code   

原文地址:http://www.cnblogs.com/onhacker/p/7070979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!