删除表

from  docx  import  Document
w=Document(r'F:\word练习\表格.docx')

#删除表
print(len(w.tables))
t=w.tables[0]
t._element.getparent().remove(t._element)
print(len(w.tables))

 

posted @ 2020-07-04 22:42  马蹄哒哒  阅读(171)  评论(0编辑  收藏  举报