资源简介
file=open("考研英语真题.txt",'r',encoding='UTF-8')
只要把文件放在同一目录下,在上面这一行中改一下文件名就行。
考研时候感觉辅导书上的高频词汇有点问题,就写了这么个程序^_^
代码片段和文件信息
import re
#coding=utf-8
file=open(“考研英语真题.txt“‘r‘encoding=‘UTF-8‘)
file_context=file.read()
#print (file_context)
file.close()
print (‘file read over and colsed‘)
print (‘##‘*40)
word_dric={}
all_words_list=[]
all_words_list =re.findall (r‘.+?\b‘file_context) #find all the words
#print (all_words_list)
print (‘find all the words‘)
print (‘##‘*40)
for word in all_words_list:
if word in word_dric:
word_dric[word]=word_dric[word]+1
else:
word_dric[word]=1
print (‘words occurrences count over‘)
print (‘##‘*40)
sortedlist =sorted(word_dric.items()key = lambda x:x[1]reverse = True)
#print (sortedlist)
print(‘sorted over‘)
print (‘##‘*40)
file=open(“process_result.txt“‘w‘encoding=‘UTF-8‘)
for item in sortedlist:
file.write(str(item))
file.write(‘\n‘)
file.close()
print (‘result write into txt over‘)
‘‘‘
file=open(“process_result.txt“‘w‘encoding=‘UTF-8‘)
for word in word_dric:
file.write(word)
file.write(‘ :‘)
file.write( str(word_dric[word]) )
file.write(‘\n‘)
file.close()
print (‘result write over‘)
‘‘‘
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1159 2019-01-21 12:43 count_words_occurrences.py
文件 1083609 2019-01-21 03:34 考研英语真题.txt
- 上一篇:高效算法128例配套代码
- 下一篇:Arcpy实现dem河网提取
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论