如何使用python-docx在docx文件中写入多个表?

时间:2019-06-10 22:34:27

标签: python python-3.x python-docx

我想使用python在docx文件中写入/包含两个以上的表。 如何使用python将这种结构写为docx文件中的表格?

我为单个表尝试了以下代码。现在,我想在一个docx中创建2个表。

table = document.add_table(rows=rows_no,cols=1)

Timeline = row[5]
print (row[0],row[3],"Timing:",row[5])
cells = table.add_row().cells
cells[0].paragraphs[0].add_run( Compliance_requirements).bold = True
cells[0].paragraphs[1].add_run( "Obs: "+Finding_Description).text = True
cells[0].paragraphs[2].add_run( "requitements: "+requirements).text = True
cells[0].paragraphs[3].add_run( "Timeline: Need"+Timeline+" days of notice period .").text = True

document.add_paragraph()

1 个答案:

答案 0 :(得分:0)

您只需要一个循环即可创建表。假设您需要5张桌子:

number_of_tables = [1, 2, 3, 4, 5]
document = Document()

for k in number_of_tables:
    table = document.add_table(rows=2, cols=3, style='Light Grid')
    # Here add your content

    document.add_paragraph('Adding space between tables')

document.save('my_test.docx')