1.12序列中出现次数最多的元素
作者:互联网
问题
怎样找出一个序列中出现次数最多那个元素呢?
解决方案
collection.Counter类就是专门为这类问题而设计的,它甚至有一个有用的most_common()方法直接给了你答案。
为了演示,先假设你有一个单词列表并且想找出哪个单词出现频率最高。你可以这样做:
words = [
'look', 'into', 'my', 'eyes', 'look', 'into', 'my', 'eyes',
'the', 'eyes', 'the', 'eyes', 'the', 'eyes', 'not', 'around',
'the', 'eyes', "don't", 'look', 'around', 'the', 'eyes',
'look', 'into', 'my', 'eyes', "you're", 'under']
from collections import Counter
word_counts = Counter(words)
print(word_counts)
# Counter({'eyes': 8, 'the': 5, 'look': 4, 'into': 3, 'my': 3, 'around': 2, 'not': 1, "don't": 1, "you're": 1, 'under': 1})
top_three = word_counts.most_common(3)
print(top_three) # [('eyes', 8), ('the', 5), ('look', 4)]
讨论
作为输入,Counter对象可以接受任意由哈希元素构成的序列对象。在底层实现上,一个Counter对象就是一个字典,将元素映射到它出现的次数上。比如:
print(word_counts['not'])# ->1
print(word_counts['eyes']) # ->8
如果你想动手增加技术,可以简单的用加法:
morewords=['why','are','you','not','looking','in','my','eyes']
for word in morewords:
word_counts[word]+=1
print(word_counts['eyes'])# ->9
或者你可以使用update()方法:
word_counts.update(morewords)
print(word_counts['eyes'])# ->9
Counter实例是又给鲜为人知的特性是它们可以很容易的跟数学运算操作相结合。比如:
a = Counter(words)
b = Counter(morewords)
print(a)
#Counter({'eyes': 8, 'the': 5, 'look': 4, 'into': 3, 'my': 3, 'around': 2, 'not': 1, "don't": 1, "you're": 1, 'under': 1})
print(b)
#Counter({'why': 1, 'are': 1, 'you': 1, 'not': 1, 'looking': 1, 'in': 1, 'my': 1, 'eyes': 1})
print(a + b)
#Counter({'eyes': 9, 'the': 5, 'look': 4, 'my': 4, 'into': 3, 'not': 2, 'around': 2, "don't": 1, "you're": 1, 'under': 1, 'why': 1, 'are': 1, 'you': 1, 'looking': 1, 'in': 1})
print(a - b)
#Counter({'eyes': 7, 'the': 5, 'look': 4, 'into': 3, 'my': 2, 'around': 2, "don't": 1, "you're": 1, 'under': 1})
毫无疑问,Counter对象在几乎所有需要制表或者统计数据的场合是非常有用的工具,在解决这类问题的时候你应该首先选择它,而不是手动的利用字典去实现。
标签:eyes,1.12,look,Counter,print,次数,序列,word,counts 来源: https://blog.csdn.net/Tangerine02/article/details/123042929