python統計檔案中單詞數

2021-08-08 09:35:18 字數 665 閱讀 6561

python統計指定檔案中的各個單詞數,主要用了正規表示式!

**如下:

# # -*- coding: utf-8 -*-

import re, os

#re一般處理正規表示式

from collections import counter

filesource = './a.txt'

def getmostcommonword(articlefilesource):

'''輸入乙個英文的純文字檔案,統計其中的單詞出現的個數'''

pattern = r'''[a-za-z]+|\$?\d+%?$'''

with open(articlefilesource) as f:

r = re.findall(pattern,f.read())

print(r)

print('*'*20)

return counter(r).most_common()

if __name__ == '__main__':

print(getmostcommonword(filesource))

統計單詞數

include include include include include includeusing namespace std struct node int main else if s.find 1 transform s.begin s.end s.begin toupper sourc...

單詞數目統計

時間限制 10 sec 記憶體限制 128 mb neo 給你一系列字串,請你輸出字串中的不同單詞個數以及總單詞個數。多組輸入,每組資料都是一行字串 長度小於200 其中每個單詞以空格隔開 單詞都是小寫字母組成 輸出字串中的不同單詞個數以及總單詞個數。i love china aa aa bb 3 ...

2019 3 20統計單詞數

題目描述 修羅王和邪狼潛入銀行盜走了大量的珠寶,警察經過仔細查詢和推理,終於找到了裝有這批珠寶的保險櫃,但無法開啟保險櫃。經過觀察發現保險櫃背面有一行字元,且發現只要統計出這行字串中有多少個單詞就是開啟保險櫃的密碼。單詞之間由乙個或多個空格分開,且字串不以空格開頭。輸入描述 輸入一行包含若干空格的字...