Python-docx设置纸张方向为横向
此篇博客将从两个方面讲清楚如何使用Python-docx库将docx文档设置为横向第一种,设置当前页面方向为横线from docx import Documentfrom docx.enum.section import WD_ORIENT#这里能够获取到当前的章节,也就是第一个章节section = document.sections[0]#需要同时设置width,height才能成功new_width, new_height = section.page_height, section.p
原创
2022-01-23 22:26:16 ·
3289 阅读 ·
0 评论