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