时间:2021-05-22
python-docx库可用于创建和编辑Microsoft Word(.docx)文件。
官方文档:链接地址
备注:
doc是微软的专有的文件格式,docx是Microsoft Office2007之后版本使用,其基于Office Open XML标准的压缩文件格式,比doc文件所占用空间更小。docx格式的文件本质上是一个ZIP文件,所以其实也可以把.docx文件直接改成.zip,解压后,里面的word/document.xml包含了Word文档的大部分内容,图片文件则保存在word/media里面。
python-docx不支持.doc文件,间接解决方法是在代码里面先把.doc转为.docx。
一、安装包
pip3 install python-docx二、创建word文档
下面是在官文示例基础上对个别地方稍微修改,并加上函数的使用说明
from docx import Documentfrom docx.shared import Inches document = Document() #添加标题,并设置级别,范围:0 至 9,默认为1document.add_heading('Document Title', 0) #添加段落,文本可以包含制表符(\t)、换行符(\n)或回车符(\r)等p = document.add_paragraph('A plain paragraph having some ')#在段落后面追加文本,并可设置样式p.add_run('bold').bold = Truep.add_run(' and some ')p.add_run('italic.').italic = True document.add_heading('Heading, level 1', level=1)document.add_paragraph('Intense quote', style='Intense Quote') #添加项目列表(前面一个小圆点)document.add_paragraph( 'first item in unordered list', style='List Bullet')document.add_paragraph('second item in unordered list', style='List Bullet') #添加项目列表(前面数字)document.add_paragraph('first item in ordered list', style='List Number')document.add_paragraph('second item in ordered list', style='List Number') #添加图片document.add_picture('monty-truth.png', width=Inches(1.25)) records = ( (3, '101', 'Spam'), (7, '422', 'Eggs'), (4, '631', 'Spam, spam, eggs, and spam')) #添加表格:一行三列# 表格样式参数可选:# Normal Table# Table Grid# Light Shading、 Light Shading Accent 1 至 Light Shading Accent 6# Light List、Light List Accent 1 至 Light List Accent 6# Light Grid、Light Grid Accent 1 至 Light Grid Accent 6# 太多了其它省略...table = document.add_table(rows=1, cols=3, style='Light Shading Accent 2')#获取第一行的单元格列表hdr_cells = table.rows[0].cells#下面三行设置上面第一行的三个单元格的文本值hdr_cells[0].text = 'Qty'hdr_cells[1].text = 'Id'hdr_cells[2].text = 'Desc'for qty, id, desc in records: #表格添加行,并返回行所在的单元格列表 row_cells = table.add_row().cells row_cells[0].text = str(qty) row_cells[1].text = id row_cells[2].text = desc document.add_page_break() #保存.docx文档document.save('demo.docx')创建的demo.docx内容如下:
三、读取word文档
from docx import Document doc = Document('demo.docx') #每一段的内容for para in doc.paragraphs: print(para.text) #每一段的编号、内容for i in range(len(doc.paragraphs)): print(str(i), doc.paragraphs[i].text) #表格tbs = doc.tablesfor tb in tbs: #行 for row in tb.rows: #列 for cell in row.cells: print(cell.text) #也可以用下面方法 '''text = '' for p in cell.paragraphs: text += p.text print(text)'''运行结果:
Document TitleA plain paragraph having some bold and some italic.Heading, level 1Intense quotefirst item in unordered listsecond item in unordered listfirst item in ordered listsecond item in ordered listDocument TitleA plain paragraph having some bold and some italic.Heading, level 1Intense quotefirst item in unordered listsecond item in unordered listfirst item in ordered listsecond item in ordered list QtyIdDesc101Spam422Eggs631Spam, spam, eggs, and spam[Finished in 0.2s]以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
读取docx文档使用的包是python-docx1.安装python-docx包sudopipinstallpython-docx2.使用python-docx
Python读写word文档有现成的库可以处理。我这里采用python-docx。可以用pipinstallpython-docx安装一下。这里说一句,ppt和
使用python工具读写MSWord文件(docx与doc文件),主要利用了python-docx包。本文给出一些常用的操作,并完成一个样例,帮助大家快速入手。
利用python-docx模块,写批量生日邀请函有关python-docx的使用方法,可以参考官方的API文档。这里使用了其中的一些基本功能,来完成一个简单的任
最近有个奇葩要求要项目中的N行代码申请专利啥的然后作为程序员当然不能复制粘贴用代码解决。。使用python-docx读写docx文件环境使用python3.6.