You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# -*- coding: utf-8 -*-
|
|
|
|
import operator
|
|
|
|
def top_word(word_list):
|
|
word_freqs = {}
|
|
for w in word_list:
|
|
if w in word_freqs:
|
|
word_freqs[w] += 1
|
|
else:
|
|
word_freqs[w] = 1
|
|
return sorted(word_freqs.items(), key=operator.itemgetter(1), reverse=True)[:10]
|
|
|