a=[,,,,,,,,,,,] 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函数的使用