参考链接https://blog.csdn.net/qq_51870267/article/details/121599189
解决方案:
使用 openpyxl 而不是 xlrd 打开 .xlsx 文件。
在使用 pandas 读取 .xlsx 文件时指定 openpyxl
import pandas as pd contents = pd.read_excel('<name-of-file>.xlsx', engine='openpyxl')
参考链接https://blog.csdn.net/qq_51870267/article/details/121599189
解决方案:
使用 openpyxl 而不是 xlrd 打开 .xlsx 文件。
在使用 pandas 读取 .xlsx 文件时指定 openpyxl
import pandas as pd contents = pd.read_excel('<name-of-file>.xlsx', engine='openpyxl')