【无标题】

单元格中插入图片

要在表格中插入图片,你可以使用add_picture方法插入图片,并指定插入到哪个单元格中。这里有个例子:

python 复制代码
from docx import Document
from docx.shared import Inches

document = Document()
table = document.add_table(rows=2, cols=2)

# Add image to cell (0, 1)
cell = table.cell(0, 1)
img_path = 'picture.png'
paragraph = cell.paragraphs[0]
run = paragraph.add_run()
run.add_picture(img_path, width=Inches(2.0))

document.save('my_table.docx')

固定列宽

要固定表格的列宽,你可以使用Table.auto_fit方法,并将autofit参数设置为False。然后,可以使用Table.columns属性来访问表格中的列,并设置每个列的宽度。这里有个例子:

python 复制代码
from docx import Document
from docx.shared import Inches

document = Document()
table = document.add_table(rows=2, cols=3, style='Table Grid')

# Turn off autofit  固定列宽
table.autofit = False

# Set column widths
table.columns[0].width = Inches(2.0)
table.columns[1].width = Inches(3.0)
table.columns[2].width = Inches(4.0)

# Add cell content
row = table.rows[0]
row.cells[0].text = 'Column 1'
row.cells[1].text = 'Column 2'
row.cells[2].text = 'Column 3'

document.save('my_table.docx')

在这个例子中,我们首先创建一个2行3列的表格,并将autofit参数设置为False。接着,我们设置每个列的宽度,分别为2、3和4英寸。最后,我们在第一行的每个单元格中添加文本。

注意,在使用Table.columns属性时,索引从0开始。因此,我们使用table.columns[0]来访问第一列,使用table.columns[1]来访问第二列,以此类推。

python生成的word表格设置内容居中

python生成的word表格设置内容内容默认左对齐,生成的表格不美观可以使用一下代码将内容居中

需要导入的库

python 复制代码
from docx.enum.table import WD_TABLE_ALIGNMENT

将单元格内容设置居中

python 复制代码
for r in range(6):#循环将每一行,每一列都设置为居中
    for c in range(8):
        table.cell(r, c).paragraphs[0].paragraph_format.alignment = WD_TABLE_ALIGNMENT.CENTER
相关推荐
陆康永2 分钟前
vue2封装hook函数,可以监听主页面生命周期
前端·javascript·vue.js
我命由我123453 分钟前
Vue Router - 记录一下 2 种路由写法
前端·javascript·vue.js·前端框架·html·html5·js
溜达的大象7 分钟前
后端常用技术全方位分析:从核心标配到淘汰弃用,一文理清技术选型逻辑
网络·数据库
m0_719084117 分钟前
导入导出—设备管理系统
前端·javascript·vue.js
周淳APP9 分钟前
【计算机网络之XSS、CSRF、DDoS原理及防御措施】
前端·网络·计算机网络·http·ddos·xss·csrf
麦聪聊数据11 分钟前
QuickAPI 如何重塑可视化大屏与 BI 的数据交付链路?
数据库·sql·低代码·微服务·重构
wuhen_n12 分钟前
Vue Router 进阶:路由懒加载、导航守卫与元信息的高效运用
前端·javascript·vue.js
SoaringHeart14 分钟前
Flutter进阶|源码修改:给 DecorationImage 源码添加偏移量
前端·flutter
wuhen_n15 分钟前
虚拟列表完全指南:从原理到实战,轻松渲染10万条数据
前端·javascript·vue.js
草莓熊Lotso16 分钟前
手搓简易 Linux 进程池:从 0 到 1 实现基于管道的任务分发系统
linux·运维·服务器·数据库·c++·人工智能