import os
import docx
spam=os.listdir(‘D:\\1‘)#获取文件夹下的word文档列表
print(spam)
for i in spam:
doc=docx.Document(‘D:\\1\\{}‘.format(i))
doc.add_paragraph(‘world‘)
doc.save(‘D:\\1\\{}‘.format(i))#注意在已有的word文档中写入之后要保存
原文地址:https://www.cnblogs.com/shunguo/p/11399293.html
时间: 2024-10-15 21:47:34