标签: python list dictionary
我有一个单词列表,我想将它们添加到字典中并计算每个单词出现的次数。
答案 0 :(得分:1)
Python附带电池;使用collections.Counter() object:
collections.Counter()
from collections import Counter counts = Counter(list_of_words)