码迷,mamicode.com
首页 > 编程语言 > 详细

python每日一练:0004题

时间:2019-07-06 16:14:33      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:出现   文本   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!