我有一个excel文件。我想使用python将文件插入Word文档的某些页面。但是我不知道该怎么做。(插入整个文件,而不是excel表内容)就像单词“插入->对象->从文件创建”一样。
word_application = Word.ApplicationClass()
word_application.Visible = False
document = word_application.Documents.Open(document)
document.InlineShapes.AddOLEObject('C:\\Documents and Settings\\aaa.xlsx')