xlrd库是一个python用于读取excel的第三方库
pip3 install xlrd -i https://pypi.tuna.tsinghua.edu.cn/simple/
只能处理旧版本的Excel文件:xlwt只支持创建和写入旧版本的Excel文件,例如xls格式,而不支持新的xlsx格式。
pip3 install xlwt -i https://pypi.tuna.tsinghua.edu.cn/simple/
安装openpyxl 可以读取和操作excel
pip3 install openpyxl -i https://pypi.tuna.tsinghua.edu.cn/simple/