官方文档

参考博客

可以自动生成docx的一个包,

from docx import Document
from docx.shared import Inches
document = Document()
for row in range(9):
    t = document.add_table(rows=1, cols=1, style='Table Grid')
    t.autofit = False  # 很重要!
    w = float(row) / 2.0
    t.columns[0].width = Inches(w)
document.save('table-step.docx')

会在当前目录下生成一个.docx文件,然后里面会自动生成表格。。

from docx import Document
document = Document()
paragraph = document.add_paragraph('Lorem ipsum dolor sit amet')
prior_paragraph = paragraph.insert_paragraph_before('Lorem ipsum before')
document.add_heading(text='The REAL meaning of the universe', level=0)
document.add_heading('The REAL meaning of the universe')
document.add_heading(text='The role of dolphins', level=2)
document.add_page_break()
table = document.add_table(rows=2, cols=2)
cell = table.cell(0, 1)
cell.text = 'parrot, possibly!'
row = table.rows[1]
row.cells[0].text = 'Foo bar to you!'
row.cells[1].text = 'And a hearty foo bar to you too sir!'
for row in table.rows:
    for cell in row.cells:
        print('====>', cell.text)

row_count = len(table.rows)
col_count = len(table.columns)
print('row_count:', row_count, 'col_count:', col_count)
rows = table.add_row()
document.add_page_break()
document.add_heading(text='The REAL meaning of the universe', level=0)
document.add_heading('The REAL meaning of the universe')
document.add_heading(text='The role of dolphins', level=2)
document.save("xxx.docx")

生成文件效果图如下:

python-docx

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-04-08
  • 2021-11-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-03-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案