1.导入库
from docx import Document
2.加载word文档对象
doc = Document(path)
3.定位表格
# 获取所有表格对象
tables = doc.tables
# 获取word中第一个表格对象
table = tables[0]
4.合并单元格
a = table.cell(1, 1) # 获取第二行第二列单元格对象
b = table.cell(1, 2) # 获取第二行第三列单元格对象
# 合并a与b构成的长方形区域
a.merge(b)