资源简介
用python分别读取了哈姆雷特和三国演义的txt文本文件,并结合了python第三方库jieba对三国演义中的人物出场进行了排序。
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Tue Sep 4 15:48:05 2018
@author: weilangao
“““
#def getText():
# txt=open(“hamlet.txt““r“).read()
# txt=txt.lower()
# for ch in ‘!@#$%^&*():“;<>.?/{[]}\+-=~|‘:#去掉特殊字符
# txt=txt.replace(ch““)
# return txt
#
#hamletTxt=getText()
#words=hamletTxt.split()
#counts={}
#for word in words:
# counts[word]=counts.get(word0)+1
#items=list(counts.items())
#items.sort(key=lambda x:x[1]reverse=True)#按照列表的键值对的第二个值进行排序
#for i in range(10):
# wordcount=items[i]
# print(“{0:<10}{1:>5}“.format(wordcount))
import jieba
txt=open(“threekingdoms.txt““r“encoding=“utf-8“).read()
excludes={“将军““却说““荆州““二人““不可““不能““如此““如何““主公““军士““左右“}
words=jieba.lcut(txt)
counts={}
for word in words:
if len(word)==1:
continue
elif word==“诸葛亮“ or word==“孔明曰“:
rword=“孔明“
elif word==“关公“ or word==“云长“:
rword=“关羽“
elif word==“玄德“ or word==“玄德曰“:
rword=“刘备“
elif word==“孟德“ or word==“丞相“:
rword=“曹操“
else:
rword=word
counts[rword]=counts.get(rword0)+1
for word in excludes:
del counts[word]
items=list(counts.items())
items.sort(key=lambda x:x[1]reverse=True)
for i in range(15):
wordcount=items[i]
print(“{0:<10}{1:>5}“.format(wordcount))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1483 2018-09-04 16:39 5.py
文件 180768 2017-03-17 08:38 hamlet.txt
文件 1767830 2017-03-17 08:38 threekingdoms.txt
- 上一篇:西电软院算法上机1代码
- 下一篇:人工鱼群算法求函数的最大值
相关资源
- 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官方文档
评论
共有 条评论