我有一个要插入 Word 文档的 HTML 表格。此代码在文档的开头插入表格,除了位置之外,它看起来很棒。我需要能够为表格指定一个位置中间文档。如果有办法让代码使用标记作为表格的插入点,我可以更改文档以包含某种标记。谢谢
import win32com.client
def InsertTable(LetterPath, TablePath):
app = win32com.client.DispatchEx("Word.Application")
app.Visible = 0
app.DisplayAlerts = 0
app.Documents.Open(LetterPath)
app.Selection.InsertFile(TablePath)
app.ActiveDocument.Close(SaveChanges=True)
app.Quit()