码迷,mamicode.com
首页 > 其他好文 > 详细

删除单元格,列,行

时间:2020-07-05 23:08:19      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:单元   graphs   save   column   color   document   span   text   imp   

from  docx  import  Document
word=Document(r    )
tale=word.tables[0]
#第一种删除单元格的方法
table.cell(0,0).text=""
#第二种删除单元格的方法
paragraph=table.cell(0,1).paragraphs[0].text=""


#删除一行
for  cell in table.rows[0].cells:
    cell.text=""

#删除一列
for cell  in  table.columns[0].cells:
    cell.text=""

word.save(r   )

 

删除单元格,列,行

标签:单元   graphs   save   column   color   document   span   text   imp   

原文地址:https://www.cnblogs.com/luckiness/p/13252095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!