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

给表的单元格赋值

时间:2020-07-05 01:00:11      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:from   cell   单元   word   对齐   imp   style   class   bsp   

from  docx  import  Document
from  docx  import  WD_PARAGRAPH_ALIGNMENT

w=Documeent(rF:\word练习\a.docx)

#第一种方法
t=w.add_table(3,3)
t.cell(0,0).text=李先生

#第二种方法
段落=t.cell(0,1).paragraphs[0]
段落.text=王二麻子
段落1=t.cell(0,1).add_paragraph(第二个段落居中)
段落1.alighment=WD_PARAGRAPH_ALIGNMENT.CENTER    #居中对齐

 

给表的单元格赋值

标签:from   cell   单元   word   对齐   imp   style   class   bsp   

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

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