用python读取excel表格数据,显示单元格内容均为u’加数字,没有中文,求解
这个是字符乱码,用utf-8读取试一下,可以参考下文https://blog.csdn.net/qq_39314932/article/details/96180914
workbook=xlrd.open_workbook('xxx.xls',encoding_override="utf-8")