标签: python excel xlrd
python xlrd可以读取原始数据而不是unicode数据吗?我尝试使用python xlrd读取excel文件。但我只能从文件中获取unicode字符串而不是原始字符串。如何使用xlrd从excel文件中获取原始字符串?这可能吗?
答案 0 :(得分:0)
如果您知道现有数据的编码,则可以在xlrd读取后继续编码数据。
data = u'This is sample read by xlrd' r_data = data.encode('utf-8')
建议阅读: