2014-02-17 133 views
-3

我有一個單詞列表,我想將它們添加到字典中並計算每個單詞出現的次數。將單詞列表添加到詞典中

+2

你試過了什麼?你想要的是一個直方圖。你可以使用'from collections import defaultdict; d = defaultdict(int); d [word] + = 1'。 'collections'中還有'Counter'類。你應該看看這些東西。 –

+0

你已經嘗試了什麼?在提出問題之前,你需要表現出一些努力。 – rvighne

回答

1

Python隨機附帶電池;使用collections.Counter() object

from collections import Counter 

counts = Counter(list_of_words) 
+0

非常感謝您的意見,他們真的很有幫助。我知道這很簡單,但我一直在嘗試愚蠢的東西,我終於做到了。 – user3319894