python python-docx办公自动化操作word

Posted 沭水之虾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python python-docx办公自动化操作word相关的知识,希望对你有一定的参考价值。

from docx import Document
from docx.shared import Inches

document = Document()

document.add_heading(\'Document Title\', 0)

p = document.add_paragraph(\'A plain paragraph having some \')
p.add_run(\'bold\').bold = True
p.add_run(\' and some \')
p.add_run(\'italic.\').italic = True

document.add_heading(\'Heading, level 1\', level=1)
document.add_paragraph(\'Intense quote\', style=\'Intense Quote\')

document.add_paragraph(
    \'first item in unordered list\', style=\'List Bullet\'
)
document.add_paragraph(
    \'first item in ordered list\', style=\'List Number\'
)

# document.add_picture(\'monty-truth.png\', width=Inches(1.25))

records = (
    (3, \'101\', \'Spam\'),
    (7, \'422\', \'Eggs\'),
    (4, \'631\', \'Spam, spam, eggs, and spam\')
)

table = document.add_table(rows=1, cols=3)
hdr_cells = table.rows[0].cells
hdr_cells[0].text = \'Qty\'
hdr_cells[1].text = \'Id\'
hdr_cells[2].text = \'Desc\'
for qty, id, desc in records:
    row_cells = table.add_row().cells
    row_cells[0].text = str(qty)
    row_cells[1].text = id
    row_cells[2].text = desc

document.add_page_break()

#添加页眉
section=document.sections[0]
header=section.header
paragraph = header.paragraphs[0]
paragraph.text = "Left Text\\tCenter Text\\tRight Text"
paragraph.style = document.styles["Header"]

document.save(\'demo.docx\')

 

以上是关于python python-docx办公自动化操作word的主要内容,如果未能解决你的问题,请参考以下文章

Python自动化办公 — 对 word 文本处理实现自动化操作!

Python自动化办公

Python自动化办公

Python自动化办公

Python自动化办公

实用的 Python 自动化办公技巧