https://blog.csdn.net/sinat_37005367/article/details/77855359
[](javascript:void(0); "復(fù)制代碼")
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">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')</pre>
](javascript:void(0); "復(fù)制代碼")
會(huì)在當(dāng)前目錄下生成一個(gè).docx文件罢猪,然后里面會(huì)自動(dòng)生成表格通惫。。
[](javascript:void(0); "復(fù)制代碼")
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">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")</pre>
](javascript:void(0); "復(fù)制代碼")
生成文件效果圖如下: