Traceback (most recent call last):
File "C:\my code\test001.py", line 2, in <module>
xlrd.open_workbook('class01.xlsx')
File "C:\my code\venv\lib\site-packages\xlrd\__init__.py", line 170, in open_workbook
raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported')
xlrd.biffh.XLRDError: Excel xlsx file; not supported
在安装xlrd插件时,需要注意xlrd的版本,3,9的IDE默认xlrd版本是2.01,这个版本不识别xlsx格式,需要在安装xlrd时选择指定版本,选择1.2.0就可以了