1 处理方法和片段可以参考chatgpt,
常见的python模块有xrld、openpyxl及抽象程度更高的pandas
2 常见问题
2.1 pandas读取表格时报”xlrd.biffh.XLRDError: Excel xlsx file; not supported“
解决办法:
指定解析引擎engine
pd.read_excel('test.xlsx', engine='openpyxl')
1 处理方法和片段可以参考chatgpt,
常见的python模块有xrld、openpyxl及抽象程度更高的pandas
2 常见问题
2.1 pandas读取表格时报”xlrd.biffh.XLRDError: Excel xlsx file; not supported“
解决办法:
指定解析引擎engine
pd.read_excel('test.xlsx', engine='openpyxl')