# 添加表格
table = slide.shapes.add_table(2, 3, Inches(2), Inches(2), Inches(4), Inches(2)).table
# 填充内容
table.cell(0, 0).text = 'title1'
table.cell(0, 1).text = 'title2'
table.cell(0, 2).text = 'title3'
# 合并单元格
cell = table.cell(0, 0)
cell1 = table.cell(0, 2)
cell.merge(cell1)
# 取消合并单元格
if cell.is_merge_origin:
cell.split()