#coding=utf-8
import re
def word_count(word,content):
'''
定义一个单词计数函数
'''
return len(re.findall(word,content.lower()))
#生成26个字母列表
words=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
#读取文件内容
with open('0004.txt','r') as f:
content=f.read()
#统计单词个数
count={}
for i in words:
count[i]=word_count(i,content)
print count
任一个英文的纯文本文件0004.txt,统计其中的单词(不区分大小写)出现的个数
最新推荐文章于 2022-05-31 15:29:09 发布