0221 解决万得导出数据excel无法python读入的问题

报错如下: TypeError: <class 'openpyxl.styles.named_styles._NamedCellStyle'>.name should be <class 'str'> but value is <class 'NoneType'>

原因分析:

万得导出的xlsx带有某些格式,比如首行加粗,excel桌面端工具能打开,但openpyxl报错,导致无法批量处理 ,

修改方法:

使用python3.8 安装旧版pandas和xlrd,并在pandas代码中指定引擎使用xlrd

\Python38\Scripts\pip.exe install pandas==1.3.5 -i https://pypi.tuna.tsinghua.edu.cn/simple

\Python38\Scripts\pip.exe install xlrd=1.2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

pd .read_excel (pdf_path, usecols=None, engine='xlrd')

提供解决思路的原文地址:

agileminorcommented on Apr 29, 2022

I found a different work around - in pandas 1.3.5 (or earlier) and xlrd version < 2.0, use engine='xlrd' and the ViCell file can be opened successfully.

来自 <BUG: pandas cannot open xlsx with openpyxl engine · Issue #40499 · pandas-dev/pandas · GitHub>

最后使用python38就可以使用了。

C:\Users\charlie\AppData\Local\Programs\Python\Python38\python.exe mergeTables.py

相关推荐
乌旭9 分钟前
量子计算入门:Qiskit实战量子门电路设计
人工智能·pytorch·python·深度学习·transformer·量子计算
Niuguangshuo30 分钟前
Python设计模式:责任链模式
开发语言·python·责任链模式
小杨4041 小时前
python入门系列十五(asyncio)
人工智能·python·pycharm
爱学习的capoo1 小时前
对应列表数据的分割和分组
python·pandas
点燃大海1 小时前
MySQL表结构导出(Excel)
java·数据库·python·mysql·spring
Hole_up1 小时前
蓝桥杯真题-分糖果-题解
python·算法·职场和发展·蓝桥杯
databook1 小时前
『Plotly实战指南』--散点图绘制进阶篇
python·数据分析·数据可视化
Tttian6222 小时前
Python办公自动化(4)对PPT&邮箱的操作
开发语言·python
pk_xz1234562 小时前
python加载训练好的模型并进行叶片实例分割预测
开发语言·python
独好紫罗兰2 小时前
洛谷题单3-P1075 [NOIP 2012 普及组] 质因数分解-python-流程图重构
开发语言·python·算法