python学习WE

Python学习九十二天:Python操作word

2019-05-24  本文已影响17人  暖A暖

1.Python写word文档

pip install python-docx
from docx import Document
document = Document()
from docx import Document

document = Document()

# 插入一级标题
document.add_heading('古诗词', level=0)  #插入标题
# 添加段落
p = document.add_paragraph('''
        人生就是一场抵达,我们总以为来日方长,可来日并不方长,我们总是在向往明天,而忽略了一个个今天,我们总是在仰望天空,却忘记要走好脚下的路。
''',)
# 插入二级标题
document.add_heading('春夜喜雨', level=1, )

# 插入段落
document.add_paragraph('好雨知时节,当春乃发生。', style='ListNumber')
document.add_paragraph('随风潜入夜,润物细无声。', style='ListNumber')
document.add_paragraph('野径云俱黑,江船火独明。', style='ListNumber')
document.add_paragraph('晓看红湿处,花重锦官城。', style='ListNumber')
# 保存文档
document.save('article.docx')

2.Python读word文档

from docx import Document

document = Document('./article.docx')

# 将word文档的内容一行一行的读取
for paragraph in document.paragraphs:
    print(paragraph.text)
document.add_paragraph('恭喜发财', style='ListNumber')

#  保存文档
document.save('new_artical.docx')

参考:https://www.9xkd.com/user/plan-view.html?id=2265170280

上一篇 下一篇

猜你喜欢

热点阅读