問題:python需要批量打開excel文件
代碼:
import os
import xlwings as xw
app = xw.App(visible = True,add_book = False)
path ='文件夾'
for file in os.listdir(path):
if file.endswith('.xlsx'):
app.books.open(file)
運行結果及報錯內容:
FileNotFoundError: No such file:‘xxx.xlsx’
我的解答思路和嘗試過的方法 :
1.path更改為具體文件名
2.將中文文件改為英文命名
我想要達到的結果:
批量打開excel