Python实现Word的读写改操作

作者:Gettler?Main 时间:2022-08-11 13:42:48 

用 docx 模块读取 Word

docx 安装

cmd 中输入pip install python-docx 即可安装 docx 模块

docx 常用函数

创建空白文档


from docx import Document

document = Document()
document.save("word.docx")  # 生成空白 word
print(document)

Python实现Word的读写改操作

读取文档


from docx import Document
document = Document("word.docx")  # 读取现有的 word 建立文档对象

Python实现Word的读写改操作

获取文档段落


from docx import Document

document = Document("word.docx")  # 读取现有的 word 建立文档对象
all_paragraphs = document.paragraphs
print(type(all_paragraphs))
for paragraph in all_paragraphs:
   # print(paragraph.paragraph_format)  # 打印出word中每段的样式名称
   # 打印每一个段落的文字
   print(paragraph.text)
   # 循环读取每个段落里的run内容
# 一个run对象是相同样式文本的延续
for paragraph in all_paragraphs:
   for run in paragraph.runs:
       print(run.text)  # 打印run内容

Python实现Word的读写改操作

Word 调整样式


from docx import Document
from docx.shared import Pt, RGBColor

document = Document()  # 读取现有的 word 建立文档对象

# 二、写入内容
# 段落
p1 = document.add_paragraph("早睡早起!!!")
format_p1 = p1.paragraph_format
# 左右缩进
format_p1.left_indent = Pt(20)
format_p1.right_indent = Pt(20)
# 首行缩进
format_p1.first_line_indent = Pt(20)
# 行间距
format_p1.line_spacing = 1
# 追加
# 一个run对象是相同样式文本的延续
run = p1.add_run("我也想做舔狗\n")
# 字体,字号,文字颜色
run.font.size = Pt(12)
run.font.name = "微软雅黑"
run.font.color.rgb = RGBColor(235, 123, 10)
run1 = p1.add_run("贾某人不学习")
# 加粗,下划线,斜体
run1.bold = True
run1.font.underline = True
run1.font.italic = True
# # 三、保存文件
document.save("word.docx")

all_paragraphs = document.paragraphs
# print(type(all_paragraphs))
# <class 'list'>,打印后发现是列表
# 是列表就开始循环读取d
for paragraph in all_paragraphs:
   # print(paragraph.paragraph_format)  # 打印出word中每段的样式名称
   # 打印每一个段落的文字
   print(paragraph.text)
   # 循环读取每个段落里的run内容
   # for run in paragraph.runs:
   # print(run.text)  # 打印run内容

Python实现Word的读写改操作

Word 写入操作


from docx import Document
from docx.shared import Pt, RGBColor

document = Document()  # 读取现有的 word 建立文档对象

# 二、写入内容
document.add_heading("python 操作 Word")
# 段落
p1 = document.add_paragraph("早睡早起!!!")
p1.insert_paragraph_before("Power!!!")
format_p1 = p1.paragraph_format
# 左右缩进
format_p1.left_indent = Pt(20)
format_p1.right_indent = Pt(20)
# 首行缩进
format_p1.first_line_indent = Pt(20)
# 行间距
format_p1.line_spacing = 1
# 追加
# 一个run对象是相同样式文本的延续

run = p1.add_run("我也想做舔狗\n")
# 字体,字号,文字颜色
run.font.size = Pt(12)
run.font.name = "微软雅黑"
run.font.color.rgb = RGBColor(235, 123, 10)
run1 = p1.add_run("贾某人不学习")
# 加粗,下划线,斜体
run1.bold = True
run1.font.underline = True
run1.font.italic = True
# # 三、保存文件
document.save("word.docx")

all_paragraphs = document.paragraphs
# print(type(all_paragraphs))
# <class 'list'>,打印后发现是列表
# 是列表就开始循环读取d
for paragraph in all_paragraphs:
   # print(paragraph.paragraph_format)  # 打印出word中每段的样式名称
   # 打印每一个段落的文字
   print(paragraph.text)
   # 循环读取每个段落里的run内容
   # for run in paragraph.runs:
   # print(run.text)  # 打印run内容

Python实现Word的读写改操作

来源:https://blog.csdn.net/qq_46039856/article/details/121438506

标签:Python,Word,读写改
0
投稿

猜你喜欢

  • Python实现的基数排序算法原理与用法实例分析

    2023-11-11 10:15:12
  • 必须会的SQL语句(二) 创建表、修改表结构、删除表

    2024-01-19 16:51:16
  • python中doctest库实例用法

    2022-07-22 16:52:30
  • 理想高通滤波实现Python opencv示例

    2022-09-29 03:58:07
  • 详解Python中with语句的用法

    2022-07-31 05:24:52
  • win10系统配置GPU版本Pytorch的详细教程

    2023-07-21 19:30:38
  • 学习完全掌握纯CSS布局网页

    2008-05-28 17:14:00
  • 用FSO操作 xml

    2008-09-03 12:26:00
  • python自动提取文本中的时间(包含中文日期)

    2023-08-22 21:32:11
  • 使用python将多个excel文件合并到同一个文件的方法

    2023-01-14 18:53:42
  • python内建类型与标准类型

    2021-06-03 19:47:45
  • ant design中upload组件上传大文件,显示进度条进度的实例

    2024-04-27 16:08:46
  • Python简单获取网卡名称及其IP地址的方法【基于psutil模块】

    2022-10-07 19:52:15
  • Mysql如何巧妙的绕过未知字段名详解

    2024-01-27 16:35:32
  • Python绘制简单散点图的方法

    2023-02-22 02:01:07
  • mysql中order by与group by的区别

    2024-01-21 19:50:24
  • JavaScript HTML DOM元素 节点操作汇总

    2024-04-29 14:08:12
  • Pytorch mask-rcnn 实现细节分享

    2021-10-20 01:31:38
  • PHPCMS的使用小结

    2023-11-20 20:19:47
  • ASP 递归调用 已知节点查找根节点的函数

    2011-03-08 10:48:00
  • asp之家 网络编程 m.aspxhome.com