问题:  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')