1.导入库
from docx import Document
2.加载word文档对象
doc = Document(path)
3.增加word表格
#添加一个3行4列的表格,style为表格样式
doc.add_table(3,4,style = "Table Grid")
4.删除word表格
# 定位表格
table = doc.tables[0]
# 删除表格
table._element.getparent().remove(table._element)
5.保存word文档
doc.save(path)