sap导出的xls如何批量用pandas读取

sap导出的是xls非正常格式,
1、pandas无法直接读取,返回Excel file format cannot be determined, you must specify an engine manually.
2。使用excel,打开后会跳出一个确认框,确认之后可以进入,另存为xlsx后pandas可以读取。但是数量太多,手动操作繁琐。

img

3.直接修改文件名为xlsx后pandas依旧无法读取,excel也无法读取。
求,该问题该如何解决。

Pandas 不是说需要指定引擎吗,使用额外参数 engine = "xlrd" 试试,xlrd 应该可以读 xls 的