PythonでWordプログラミング入門-16
PythonでWordプログラミング入門
amazon kindle版を出版しました。
5.表の操作
5.1 表の操作-3
まず、Word文書がこのように、表に分かれていたとします。
ファイル名は"G:\word\Word5.docx"とします。
3つめの表の(1)→①、(2)→②、(3)→③、(4)→④、(5)→⑤に変更してみましょう。
(2)python-docxのプログラム
#python-docxをインポートします。
import docx
#Word文書の読み込み
Wd1=docx.Document("G:\word\Word5.docx")
#セルの数の変更
Wd1.tables[2].cell(0, 0).text="①"
Wd1.tables[2].cell(1, 0).text="②"
Wd1.tables[2].cell(2, 0).text="③"
Wd1.tables[2].cell(3, 0).text="④"
Wd1.tables[2].cell(4, 0).text="⑤"
#Word文書の書き込み
Wd1.save("G:\word\Word5.docx")
表の(1)→①、(2)→②、(3)→③、(4)→④、(5)→⑤に変更できました。