Python Forum
Span columns with docxTemplate python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Span columns with docxTemplate python
#3
#!/usr/bin/python3
from docx import Document
from docx.shared import Inches

document = Document()

records = (
    ('A', 'C'),
    ('B', 'C'),
)

table = document.add_table(rows=1, cols=2)
hdr_cells = table.rows[0].cells
hdr_cells[0].text = 'start'
hdr_cells[1].text = 'end'

for c0, c1 in records:
    row_cells = table.add_row().cells
    row_cells[0].text = c0
    row_cells[1].text = c1

document.save('demo.docx')
Reply


Messages In This Thread
Span columns with docxTemplate python - by jimmeh - May-28-2019, 03:59 PM
RE: Span columns with docxTemplate python - by heiner55 - May-28-2019, 06:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Here what is the meaning of span=(1,2) ,match='1'? srisrinu 1 2,134 Apr-27-2020, 10:22 AM
Last Post: anbu23
  iterating a span of a list Skaperen 5 3,192 Dec-29-2019, 08:15 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020