如何使用 python 编辑导入的 Word 文档

How to Edit the Imported Word Document using python

我有一个word文档,我想编辑它。这是文档的一部分。 [部分Word文档]:https://i.stack.imgur.com/g5JGO.jpg

我可以使用 python-docx.

将其上传到 jupyter notebook

我可以通过

访问每一行
import docx
doc = docx.Document('StudentReport.docx')
len(doc.paragraphs)
output- 31

print(doc.paragraphs[7].text)
output- 98% of Student have some access

所以我只想将 98% 更改为 85%。

你可以直接设置为:

doc.paragraphs[7].text = '85% of Student have some access'

如果你想稍微花点心思:

doc.paragraphs[7].text = doc.paragraphs[7].text.replace('98%','85%')