0
我已經下載並安裝了pywin32。我試圖用pywin32打開一個工作簿,我幾乎肯定我正確地編寫了這個,但是我想出了一個像這樣的錯誤。使用pywin32查找Excel工作簿
File "<COMObject <unknown>>", line 8, in Open
pywintypes.com_error: (-2147352567, 'Exception occurred.', (0, u'Microsoft Excel', u"'Kithenshiftweekly.xlsx' could not be found. Check the spelling of the file name, and verify that the file location is correct.\n\nIf you are trying to open the file from your list of most recently used files, make sure that the file has not been renamed, moved, or deleted.", u'xlmain11.chm', 0, -2146827284), None)
我當前的代碼如下(不是很多)
import win32com.client
x1 = win32com.client.Dispatch("Excel.Application")
x1.Visible = True
x1.Workbooks.Open("Kitchen")
x1.Workbooks.Open( 「廚房」)導致此問題。
雖然沒有找到工作簿。發生了什麼?
請標記4行中的哪一行導致此錯誤。另外,腳本的最後一行應該是函數調用,如'x1.Workbooks(「Kitchen」)。Open()'。 – Schollii
只是修復它,它是x1.Workbooks(「廚房」)。打開() –
你可能也想看看我的開源庫http://xlwings.org,它是一個圍繞pywin32的包裝,並使很多事情更容易。 –