python每日一练:0004题

2020-12-13 05:30

阅读:557

标签:出现   文本   txt   line   span   import   style   adl   find   

第 0004 题: 任一个英文的纯文本文件,统计其中的单词出现的个数。
import re

count = 0
with open(./EnglishText.txt,r) as f:
    temp = f.readlines()
    for i in temp:
        regList = re.findall([a-zA-Z0-9]+,i) #找出每一行中的单词数
        count += len(regList)

print("文本EnglishText.txt中单词的个数为:{0}".format(count))

python每日一练:0004题

标签:出现   文本   txt   line   span   import   style   adl   find   

原文地址:https://www.cnblogs.com/xuxiaowen1990/p/11143001.html


评论


亲,登录后才可以留言!