标签:position excel python 字符串 import
问题: UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xe7 in position 7: ordinal not in range(128)
分析:在网上查找,原来python的str默认是ascii编码,和unicode编码冲突,所以无法 中文字符串变量写入excel。
解决:在代码中加入下面几行就可以了。
import sys reload(sys) sys.setdefaultencoding(‘utf8‘)
解决 python用 xlsxwrite 向excel 中写入中文字符串变量 报错
标签:position excel python 字符串 import
原文地址:http://hunkz.blog.51cto.com/6157447/1697345