如何使用 FreqDist 中的 fd.items() 总结词频数?
>>> fd = FreqDist(text)
>>> most_freq_w = fd.keys()[:10] #gives me the most 10 frequent words in the text
>>> #here I should sum up numbers of each of these 10 freq words appear in the text
例如,如果每个单词most_freq_w
出现 10 次,结果应该是100
!!!我不需要文本中所有单词的数量,只需要最常用的 10 个