python2.7运行出现的Warning: UnicodeWarning: Unicode equal comparison failed to convert both arguments to
Posted 番茄土豆西红柿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2.7运行出现的Warning: UnicodeWarning: Unicode equal comparison failed to convert both arguments to 相关的知识,希望对你有一定的参考价值。
运行出现如下错误
uncode编码警告:在unicode等价比较中,把两个参数同时转换为unicode编码失败。中断并认为他们不相等。
windows下的字符串str默认编码是ascii,而python编码是utf8
解决方法:添加如下几行代码
import sys reload(sys) sys.setdefaultencoding(‘utf8‘)
以上是关于python2.7运行出现的Warning: UnicodeWarning: Unicode equal comparison failed to convert both arguments to 的主要内容,如果未能解决你的问题,请参考以下文章
VM中python2.7运行skier游戏,shell重启问题!!!!!!
Windows环境下运行python2.7 ,在写入的时候出现这样的错误 报错Traceback(most recent call last):