老師好,請教一個問題:如何實現在頁腳那插入小圖片?如在代碼后面加上:p2.text = "內部試題,禁止泄露."
#?生成word試卷 def?createPaper(filename,?papername,?questionlist): ????document?=?Document() ????#?頁眉頁腳的信息 ????section?=?document.sections[0] ????header?=?section.header ????p1?=?header.paragraphs[0] ????p1.text?=?papername ????footer?=?section.footer ????p2?=?footer.paragraphs[0]? ????p2.text?=?"內部試題,禁止泄露."