使用python-dcox操作word
pip install python-docx
1
# 读取并操作word
from docx import Document
from docx.shared import Pt
from docx.oxml.ns import qn
# 读取word文件
doc = Document('input.docx')
# 选择要修改的段落,这里以第一个段落为例
paragraph = doc.paragraphs[12]
# 修改段落中的文本样式(字体、大小等)
paragraph.text = '修改后的文本'
run = paragraph.runs[0]
run.font.name = '仿宋'
run._element.rPr.rFonts.set(qn('w:eastAsia'), '仿宋')
run.font.size = Pt(12) # 设置字体大小为小四,即12磅
run.font.bold = False
# 保存word文档
doc.save('output.docx')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
上次更新: 2023/11/30, 15:37:52