python2.7编码问题
Posted aliceboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2.7编码问题相关的知识,希望对你有一定的参考价值。
问题:UnicodeEncodeError: ‘gbk‘ codec can‘t encode character ‘U0001f340‘ in position 1004: illegal multib
指定文件字符集为utf-8
在文件头部加入以下代码:
import sys
reload(sys)
sys.setdefaultencoding(‘utf-8‘)
以上是关于python2.7编码问题的主要内容,如果未能解决你的问题,请参考以下文章