[已解决]Python-docx修改表格宽度无效的问题

前言

前不久在做一个python数据自动化处理的项目, 要求从excel表格提取有用数据并整理到word表格中去。前面的任务完成的比较顺利,但是当我想调整生成的word表格时,试了很多网上的方法,比如禁止表格的"autofit"属性并改变列高:

# encoding=utf-8
from docx import Document
from docx.shared import Inches
 
document = Document()
# 创建一个3x6的表格,并设置显示边框线
table = document.add_table(rows=3, cols=6,style='Table Grid')
table.autofit = False
for col_index in range(6):
    # 将表格每列的宽度设为5
    table.cell(0, col_index).width = Inches(5)

但是并没有效果,经过多次测试,发现表格宽度不能按行修改, 而应当按列修改。

解决方法:

# encoding=utf-8
from docx import Document
from docx.oxml.ns import qn
from docx.shared import Cm
from docx.enum.table import WD_TABLE_ALIGNMENT

document = Document()
# 创建一个3x6的表格,并设置显示边框线
table = document.add_table(rows=3, cols=6, style='Table Grid')
table.alignment = WD_TABLE_ALIGNMENT.CENTER  # 表格居中

# 设置正文为宋体
document.styles['Normal'].font.name = u'宋体'
document.styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'), u'宋体')

# 按列设置单元格宽度
length = 2
for col in range(0, 6):
    for row in range(0, 3):
        table.cell(row, col).width = Cm(length)
        table.cell(row, col).text = f"单元宽度:{round(length, 1)}cm"
    length += 0.3

document.save("测试文档.doc")

效果展示:

[已解决]Python-docx修改表格宽度无效的问题_第1张图片

很明显, 我们的修改方法奏效了 !  为了以后做项目不再踩坑, 于是写了此贴来记录,建议收藏 !


关于如何修复docx模块的代码补全功能, 在这篇博客中有解决方法:

[已解决]Python-docx在Pycharm中代码无法自动补全的问题-CSDN博客

你可能感兴趣的:(Python,docx库用法,python,自动化,word)