admin管理员组

文章数量:1611397

原因是:python的str默认是ascii编码,和unicode编码冲突,解决方法是设置utf-8;

import sys
reload(sys)
sys.setdefaultencoding('utf8')

本文标签: 解决方法CodecASCIIUnicodeDecodeErrorDecode