我有一个单词列表,我想将它们添加到字典中并计算每个单词出现的次数。
Python 附带电池;使用 collections.Counter()
对象:
from collections import Counter
counts = Counter(list_of_words)