python統計文本中單詞出現次數

任一個英文的純文本文件,統計其中的單詞出現的個數,其實就是考察re的運用,代碼:python #-*-coding:utf-8-*- import re def count_words(file_path): with open(file_path) as file: text=file.read() words=re.findall(r'[a-zA-Z]
相關文章
相關標籤/搜索