openpyxl: Value must be either numerical or a string containing a wildcard

使用 openpyxl库解析excel表格时遇到如图问题:openpyxl: Value must be either numerical or a string containing a wildcard_第1张图片

后排查在其他电脑上相同的py脚本,相同的excel文件,程序正常;

通过 pip show openyxl 检查发现两者的 openyxl 版本有差异,有问题的是 3.1.2 没问题的是 3.0.10

解决办法:

        卸载 3.1.2 版本,通过命令 pip uninstall openpyxl

        安装3.0.10版本,通过命令 pip install openpyxl==3.0.10

参考链接:https://q.cnblogs.com/q/143264/

你可能感兴趣的:(Python,python,开发语言)