需要编写一个能够返回文本中最常用单词的函数。
答案 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})
现在,您可以使用“值”按降序对其进行排序,您将获得最常用的单词。