在文档中创建一个 2*2 的 表格
table = document.add_table(rows=2, cols=2)
表格中每个单元格可进行文本编辑,颜色填充;对于特定表格而言可通过 row、column 索引来进行定位
cell = table.cell(0, 1)
赋值其文本内容
cell.text = 'parrot, possibly dead'
对一个一个单元格修改操作太麻烦了,可以一次选中指定列,对其单元格数据进行逐个修改
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!'
table.rows[index] 返回索引为 index 的指定行,根据 .rows和.cols 表示 表格的全部行或列是可迭代的,因此可通过 for 循环来访问每一个单元格
for row in table.rows:
for cell in row.cells:
print(cell.text)
因为 .rows 和 .cols 是可迭代的,通过 len() 命令来获取行、列数
row_count = len(table.rows)
col_count = len(table.columns)
除了以上操作之外,还可以向 table 中逐渐添加行、列命令
row = table.