Python python-docxでWordファイルを操作する - 新規作成 - Why it doesn't work?
Python python-docxでWordファイルを操作する - 画像を挿入する - Why it doesn't work?
python-docxによるワード操作の続きです。
今回は、改ページを追加します。
使用するAPIは"add_page_break"です。
python-docx.readthedocs.io
from docx import Document # Create a new documet doc = Document() # First page doc.add_heading('First page', 2) doc.add_paragraph('This is first page.') # Start second from here doc.add_page_break() doc.add_heading('Second page', 2) doc.add_paragraph('This is second page.') # Save created documet doc.save('test_word.docx')
これを実行すると、2ページのワード文書が作成されます。
今日はここまで。