任何人都可以告訴我如何統計單詞出現在字典中的次數。我已經將一個文件讀入終端列表中。我是否需要將列表放入字典中,或者開始將文件讀入終端中的字典而不是列表中?該文件是一個日誌文件,如果重要...在Python中計數單詞
0
A
回答
4
你應該看看collections.Counter
。你的問題有點不清楚。
0
collections.Counter有它。
給出的例子有符合您的要求我想
from collections import Counter
import re
words = re.findall(r'\w+', open('log file here.txt').read().lower())
cont = Counter(words)
#to get the count of required_word
print cont['required_word']
1
短的例子:
from collections import Counter
s = 'red blue red green blue blue'
Counter(s.split())
> Counter({'blue': 3, 'red': 2, 'green': 1})
Counter(s.split()).most_common(2)
> [('blue', 3), ('red', 2)]
相關問題
- 1. python組計數單詞
- 2. Python的單詞計數
- 3. 計數單詞的列表中的PYTHON
- 4. 計數唯一單詞在Python
- 5. 在hashmap中計數單詞
- 6. 單詞對的組合計數:python
- 7. 在單詞中匹配單詞Python
- 8. 計數流中的單詞
- 9. 計算Python中列的單詞頻率
- 10. python計算大文件中的單詞
- 11. 如何計算單詞在一列中出現的次數,python
- 12. 統計獨特詞彙並在Python中創建詞典和計數的詞典
- 13. 在一個單詞中計數字符
- 14. 在文本文件中計數單詞?
- 15. Python如何計算每個詞彙單詞在句子中顯示的次數?
- 16. 在Python中回顯單詞
- 17. 統計單個單詞中的單詞出現次數
- 18. Python中的單詞
- 19. 如何替換單詞,計算單詞並保存計數
- 20. 使用謂詞計數單詞
- 21. 計算Python中標點符號之間的單詞數
- 22. Python:計算文件中某個單詞出現的次數
- 23. Python:計算文件中單詞的總數?
- 24. 我如何計算一個單詞中輔音的數量? python
- 25. 爲什麼條件在使用python計數單詞時出錯?
- 26. 在Python中的文本文件中計算單詞的頻率
- 27. 計數句子的單詞?
- 28. 計數相似單詞
- 29. 計數特定單詞
- 30. 單擊單詞數量的計數
請更精確。你能舉一個例子,你的名單如何看起來像原則? – flonk 2013-03-20 12:54:53