标签:style blog color 使用 for div 代码 log sp
a=[1,2,2,3,4,5,6,8,9,0,0,0] dictc={} for i in range(len(a)): dictc[a[i]]=a.count(a[i]) for key in dictc: print key,dictc[key]
这段代码主要关注两点:1、字典的key是唯一值 2、count函数的使用
标签:style blog color 使用 for div 代码 log sp
原文地址:http://www.cnblogs.com/tangdouguard/p/3932882.html