Python Docx:如何将列宽设置为“自动适应内容”

时间:2018-06-25 02:14:36

标签: python pandas docx python-docx

我使用了以下代码:

# open a document
doc = docx.Document()

# add a table to the end and create a reference variable
# extra row is so we can add the header row
t = doc.add_table(df.shape[0]+1, df.shape[1])
t.allow_autofit = True
t.style = 'TableGrid'
t.alignment=WD_TABLE_ALIGNMENT.CENTER

dfpandas DataFrame的地方。但是列不是自动拟合的。

enter image description here

0 个答案:

没有答案