题目链接:https://github.com/Show-Me-the-Code/show-me-the-code
我的github链接:https://github.com/wjsaya/python_spider_learn/tree/master/python_daily
第 0004 题:任一个英文的纯文本文件,统计其中的单词出现的个数。
思路
- 打开文件
- 利用re模块的findall方法返回为数组的特性,匹配单个单词
- 统计findall方法返回的数组长度即可。
代码
|
|
一个菜鸡运维的日常
题目链接:https://github.com/Show-Me-the-Code/show-me-the-code
我的github链接:https://github.com/wjsaya/python_spider_learn/tree/master/python_daily
第 0004 题:任一个英文的纯文本文件,统计其中的单词出现的个数。
|
|