python
wonderh
这个作者很懒,什么都没留下…
展开
-
MOOC_Python语言程序设计_习题_《沉默的羔羊》文本分析
要求附件是《沉默的羔羊》中文版内容,请读入内容,分词后输出长度大于2且最多的单词。解答import jiebadef getText(): txt = open("沉默的羔羊.txt", "r", encoding='utf-8').read().lower() return txt data = jieba.lcut(getText())rs = {}for w in data: if (w.isalpha() and len(w) > 2):原创 2020-11-12 09:36:03 · 3386 阅读 · 0 评论 -
MOOC_Python语言程序设计_习题_字典翻转输出
要求读入一个字典类型的字符串,反转其中键值对输出。读入字典key:value模式,输出value:key模式。输入格式:原创 2020-11-12 09:31:54 · 1283 阅读 · 0 评论 -
MOOC_Python语言程序设计_习题_文本词频统计
实例10:文本词频统计 – Hamlet文本词频统计:一篇文章,出现了哪些词?哪些词出现的最多解答def getText(): txt = open("hamlet.txt", "r").read().lower() for ch i原创 2020-11-12 09:24:08 · 918 阅读 · 1 评论 -
MOOC_Python语言程序设计_习题_基本统计值计算
实例9:基本统计值计算标题描述获取以逗号分隔的多个数据输入(输入为一行),计算基本统计值(平均值、标准差、中位数)。除中位数外,其他输出保留小数点后两位。解答#CalStatisticsV1.pydef getNum(): #获取用户不定长度的输入 tmp = input().split(原创 2020-11-12 09:19:57 · 2949 阅读 · 0 评论 -
2020-07_python-docx 0.8.10 User Guide_05_Working with Sections
python-docx 0.8.10 User Guide说明:本文的内容来源python-docx官方文档,出于学习的目的借助于有道进行翻译。翻译的原则:只有在有道翻译出的内容不通顺或意义有误的情况下才使用个人翻译。Working with SectionsWord supports the notion of a section, a division of a document having the same page layout settings, such as margins原创 2020-07-13 22:03:20 · 223 阅读 · 0 评论 -
2020-07_python-docx 0.8.10 User Guide_07_API basics
python-docx 0.8.10 User Guide说明:本文的内容来源python-docx官方文档,出于学习的目的借助于有道进行翻译。翻译的原则:只有在有道翻译出的内容不通顺或意义有误的情况下才使用个人翻译。API basicsThe API for python-docx is designed to make doing simple things simple, while allowing more complex results to be achieved with a原创 2020-07-04 16:21:24 · 285 阅读 · 0 评论 -
2020-07_python-docx 0.8.10 User Guide_10_Understanding pictures and other shapes
python-docx 0.8.10 User Guide说明:本文的内容来源python-docx官方文档,出于学习的目的借助于有道进行翻译。翻译的原则:只有在有道翻译出的内容不通顺或意义有误的情况下才使用个人翻译。Understanding pictures and other shapesConceptually, Word documents have two layers, a text layer and a drawing layer. In the text layer, t原创 2020-07-01 15:41:41 · 205 阅读 · 0 评论 -
2020-07_python-docx 0.8.10 User Guide_03_Working with Documents
python-docx 0.8.10 User Guide## Installing## Quickstart## Working with Documents## Working with Text## Working with Sections## Working with Headers and Footers## API basics## Understanding Styles## Working with Styles## Understanding pictures and原创 2020-07-01 15:37:31 · 262 阅读 · 0 评论 -
2020-06_python学习笔记-D27
问题import docx时,由from exceptions import PendingDeprecationWarning引起ModuleNotFoundError: No module named ‘exceptions’解决方式由于Python3已经取消了这个模块,而 PendingDeprecationWarning 是内置,所以可以直接使用。故注释掉from exceptions import PendingDeprecationWarning...原创 2020-06-27 20:58:53 · 1093 阅读 · 1 评论