from docx import Document
doc = Document()
tabs = [
[“姓名”, “學號”, “成績”],
[“儲蓄保險王”, 101, 99],
[“正義真話俠”, 102, 98],
[“SavingKing”, 103, 95],
[“@wvr5039s”, 104, 90]
]
table = doc.add_table(rows=5, cols=3)
# ========================================================================
# for r in range(5):
# cells = table.rows[r].cells
# for c in range(3):
# cells[c].text = str(tabs[r][c])
# ========================================================================
for r in range(5):
for c in range(3):
table.cell(r,c).text = str(tabs[r][c])
doc.save(“savingking.docx”)
#原程式無誤,少最後一個row
#是因為使用wordPad開啟的關係
#用微軟的Word或免費的LibreOffice開,
#就不會少最後一個row
輸出檔案:
少了最後一個row
改用LibreOffice開啟即正常:
新增一行:
table.add_row()
#少最後一個row
#是wordPad的關係,程式碼無關
輸出:
最後一個row有跑出來
只是多了四個空白row
多這一行:
table.add_row()
且不屬於for迴圈之下
表格即正常:
from docx import Document
from docx.shared import Cm #或 Inches
doc = Document()
doc.add_heading(“SavingKing’s Title”,0) #數字越大,字越小
p = doc.add_paragraph(“A plain paragraph having some “)
p.add_run(“bold”).bold = True
p.add_run(” and some “) #字串前後都有一個空格
p.add_run(“italic”).italic = True
# Run物件:以相同樣式連續鄰接的文字。
#當文字的樣式有變化時,就需要一個新的Run物件。
doc.add_picture(\
r”C:\Python\RF Stable\Fig\Phase Stable.png”,width = Cm(10) )
doc.save(“savingking_2.docx”)
繼前面已經成功插入表格
如何在表格中插入圖檔?
物件 | 方法 | 備註 |
doc = Document() | .add_heading(“Title”,0) | 數字越大,字越小 |
.add_paragraph(“A plain paragraph.”) | 加入段落 | |
.add_picture( ”path” ,width = Cm( 10)) | 加入圖片 | |
.save(”path”) | 存檔 | |
pg = doc.add_paragraph() | pg.add_run(”bold text”) = True | 粗體字 |
pg.add_run(”plain text”) | ||
pg.add_run( ”italic text” ) = True | 斜體字 | |
table=doc.add_table(rows=5,cols=3) | table.cell(r,c).text = str | |
table.add_row() | ||
以上已可插入表格,段落(粗斜體),圖片 | 如何在儲存格中插入圖片? | |
run = table.cell(5,0).paragraph[0].add_run() | ||
pic = run.add_picture(”path”) | .height = Cm(8) | |
.width = Cm(12) |