python 統計文章單詞個數
檔案模版:
There are moments in life when you miss someone so much that you just want to pick them from your dreams and hug them for real! Dream what you want to dream;go where you want to go;be what you want to be,because you have only one life and one chance to do all the things you want to do.
執行結果:
C:\ProgramData\Anaconda2\python.exe C:/Users/xuyuch/PycharmProjects/untitled1/test1/word.py Counter({'you': 7, 'to': 6, 'want': 5, 'and': 2, 'do': 2, 'them': 2, 'one': 2, 'go': 2, 'what': 2, 'be': 2, 'life': 2, 'dream': 2, '': 1, 'all': 1, 'because': 1, 'have': 1, 'just': 1, 'moments': 1, 'hug': 1, 'are': 1, 'in': 1, 'miss': 1, 'your': 1, 'from': 1, 'for': 1, 'things': 1, 'there': 1, 'when': 1, 'only': 1, 'much': 1, 'real': 1, 'someone': 1, 'that': 1, 'chance': 1, 'dreams': 1, 'where': 1, 'so': 1, 'pick': 1, 'the': 1}) Process finished with exit code 0
- lines_count = 0
- words_count = 0
- chars_count = 0
- words_dict = {}
- lines_list = []
- c1 = ['!', '?', ';', '.', ',']
- all_line = ''
- import collections
- with open('c:\invalid.txt', 'r') as f:
- for line in f:
- line = line.strip('\n')
- lines_count = lines_count + 1
- all_line=all_line+line.lower()
- # print line
- #print all_line
- for i in c1:
- all_line=all_line.replace(i,' ')
- #print all_line
- str1=all_line.split(' ')
- cnt=collections.Counter(str1)
- #print str1
- print cnt
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20747382/viewspace-2135470/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python 統計文章單詞個數-1Python
- python 統計文章單詞個數 -2Python
- 統計檔案中單詞個數
- 統計一個字串中的單詞的個數,並列印各個單詞字串
- Linux驅動程式:統計單詞個數Linux
- C++ 統計單詞數C++
- zzulioj:1133:單詞個數統計(python)我有點皮!!嘿嘿Python
- python統計英文文字中的迴文單詞數Python
- 利用Hadoop執行第一個程式,計算文章中不同單詞數量Hadoop
- 統計檔案中出現的單詞次數
- 字串處理:下劃線,多空格變單空格,統計單詞出現個數字串
- 使用map:單詞計數程式
- python TK庫 統計word文件單詞詞頻程式 UI選擇文件PythonUI
- 利用python內建函式,快速統計單詞在文字中出現的次數Python函式
- python如何統計詞頻Python
- 【python技能】詞頻統計Python
- **呼叫MapReduce對檔案中各個單詞出現的次數進行統計**
- Linux獲取某個單詞的個數Linux
- 瓦爾登湖單詞統計+排序排序
- spark下統計單詞頻次Spark
- python實現詞頻統計Python
- PHP 仿 Word 統計文章字數PHP
- PythonShowMeTheCode(0004): 檢查單詞個數Python
- 期末大作業關於利用hadoop來統計單詞數目Hadoop
- python 背單詞Python
- pyton 統計單詞並排序-ok排序
- 轉:用Perl實現單詞計數器
- js統計字串中單次的個數JS字串
- python 實現中文分詞統計Python中文分詞
- 如何用Python統計不同字元個數?Python字元
- 呼叫MapReduce對檔案中單詞出現次數進行統計
- js統計陣列中單詞出現次數程式碼例項JS陣列
- 在Linux中呼叫MapReduce對檔案中各個單詞出現次數進行統計Linux
- Hadoop--map/reduce實現單詞計數Hadoop
- 一個單詞統計的例項,怎樣通過MapReduce完成排序?排序
- L1-003 個位數統計 pythonPython
- 超越單詞計數:上下文位置編碼CoPE
- 個人專案----詞頻統計----單元測試