#方法二:用 Python 字典 fromkeys() 函数用于创建一个新字典,以序列seq中元素做字典的键,value为字典所有键对应的初始值。 d = dict.fromkeys(data,0) print(d) for i in data: d[i] += 1 print(d) #使用 collections.Counter, Counter类的目的是用来跟踪值出现的次数。它是一个无序的容器类型,以字典的键值对形式存储,其中元素作为key,其计数作为value。计数值可以是任意的Interger(包括0和负数) from collections import Counter c = Counter(d) print(c) m = c.most_common(3) # Counter.most_common(n)方法得到频率最高的n个元素的列表 print(m)