pandas读取excel带汉字的列头_pandas无法读取含中文名的excel的处理方法

问题:文件名含中文时,pd.read_excel读取该文件报错,ascii码无法解码bytes

代码示例:

raw_file='./doc/测试部考勤-10月-6楼.xls'

df_raw=pd.read_excel(raw_file,encoding_override='gbk')

错误:

定位:

1.查看read_excel文档信息:

参数列表里没有编码或覆盖编码参数,所以没法指定编码格式为‘gbk’或者其他,所以即使excel里有中文时也会出现上面的解码的错误

解决:

read_excel里的第一个参数是io:可以传str,文件路径,也可以传文件对象,也可以是xlrd的workbook。

这里试下读取xlrd的workbook。

代码:

# 读取原excel

raw_file='./doc/测试部考勤-10月-6楼.xls'

content=xlrd.open_workbook(filename=raw_file,encoding_override='gbk')

df_raw=pd.read_excel(content)

报错:

需要显示指定engine

查看read_excel的源码,定位到处理engine参数处:

可以看出需要指定engine为‘xlrd'。

修正代码:

# 读取原excel

raw_file='./doc/测试部考勤-10月-6楼.xls'

content=xlrd.open_workbook(filename=raw_file,encoding_override='gbk')

df_raw=pd.read_excel(content,engine='xlrd')

问题解决。

你可能感兴趣的:(pandas读取excel带汉字的列头_pandas无法读取含中文名的excel的处理方法)