找到文本中最常见的单词

时间:2016-11-15 07:22:43

标签: python

需要编写一个能够返回文本中最常用单词的函数。

1 个答案:

答案 0 :(得分:-1)

你可以试试这个:

from collections import Counter
word=("he thought a thought that he thought he'd never think")
word=word.split(' ')
Counter(word)

输出:

Counter({'thought': 3, 'he': 2, 'a': 1, "he'd": 1, 'that': 1, 'never': 1,      
'think': 1})

现在,您可以使用“值”按降序对其进行排序,您将获得最常用的单词。