|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
查的网上的一个方法,将我word文档里已有的一个词替换成另一个词。
用的方法是 from docx import Document
但是执行了以后 虽然 exit code 0,我却看不到我document.save()生成的文档。
code如下:
from docx import Document
def read_document():
document = Document('D:/BaiduNetdiskDownload/neo+ Salon Lesson Plan/neo+Salon LP Pre A1/neo+ Pre A1 Salon LPs/neo+ Pre A1 Salon1_Greetings and Introductions.docx')
for paragraph in document.paragraphs:
for run in paragraph.runs:
if "neo+" in run.text:
run.text = run.text.replace('neo+', 'neo Professional')
document.save('D:/BaiduNetdiskDownload/neo+ Salon Lesson Plan/neo+Salon LP Pre A1/neo+ Pre A1 Salon LPs/neo Pre A1 Salon1_Greetings and Introductions.docx')
还请赐教谢谢。 |
|