添加单词列表到词典

时间:2014-02-17 17:13:29

标签: python list dictionary

我有一个单词列表,我想将它们添加到字典中并计算每个单词出现的次数。

1 个答案:

答案 0 :(得分:1)

Python附带电池;使用collections.Counter() object

from collections import Counter

counts = Counter(list_of_words)