JAVASCRIPT建構網頁文件vs.PYTHON建構WORD文件
吳孟儒 網頁和微軟WORD相同的命令document.paragraph 網頁和WORD建構標題一H1比較 document.body.appendChild(t); JAVASCRIPT建構網頁標題一H1 let t = document.createElement("H1"); t.innerText = "標題一劉任昌"; document.body.appendChild(t);//append附加到網頁主體 PYTHON建構WORD標題一的指令 document.add_heading('標題一劉任昌真偉大', level=1)