python创建word表格_python---word表格样式设置
时间: 2024-02-01 07:16:43 浏览: 106
python自动办公-08 用Python设置Word文档里表格的格式
在Python中,可以使用python-docx库来操作Word文档,包括创建表格和设置表格样式。以下是一个简单的示例代码:
```python
from docx import Document
from docx.enum.table import WD_TABLE_ALIGNMENT
from docx.enum.text import WD_ALIGN_PARAGRAPH
from docx.shared import Cm
# 创建文档对象
document = Document()
# 添加表格
table = document.add_table(rows=3, cols=3)
# 设置表格对齐方式
table.alignment = WD_TABLE_ALIGNMENT.CENTER
# 设置表格样式
table.style = 'Table Grid'
# 设置表格列宽
table.columns[0].width = Cm(4)
table.columns[1].width = Cm(6)
table.columns[2].width = Cm(8)
# 设置表格内容
table.cell(0, 0).text = '姓名'
table.cell(0, 1).text = '年龄'
table.cell(0, 2).text = '城市'
table.cell(1, 0).text = '张三'
table.cell(1, 1).text = '25'
table.cell(1, 2).text = '北京'
table.cell(2, 0).text = '李四'
table.cell(2, 1).text = '30'
table.cell(2, 2).text = '上海'
# 对齐表格内容
for row in table.rows:
for cell in row.cells:
paragraphs = cell.paragraphs
for paragraph in paragraphs:
paragraph.alignment = WD_ALIGN_PARAGRAPH.CENTER
# 保存文档
document.save('example.docx')
```
在上面的示例代码中,我们首先导入了需要使用的库。然后,我们创建了一个新的Word文档对象,并添加了一个3行3列的表格。接下来,我们设置了表格的对齐方式和样式,以及每一列的宽度。然后,我们填充了表格的内容,并对齐了表格中的文本。最后,我们保存了文档。
这只是一个简单的示例,您可以根据需要进行更改和扩展。有关更多信息,请参阅python-docx库的文档。
阅读全文