2

作者: woodsouthmmm | 来源:发表于2017-04-03 17:22 被阅读0次

    error

    encoding problem

    print key+"\t"+c[key].encode('utf-8','ignore')
    UnicodeDecodeError: 'ascii' codec can't decode byte 0xe7 in position 0: ordinal not in range(128)

    solution

    import sys
    reload(sys)
    sys.setdefaultencoding('utf-8')

    add this to the python file

    ref

    http://blog.csdn.net/use_my_heart/article/details/51303317

    reflection

    最近解决问题的方法都好暴力啊...中文编码是个经常碰到的问题、哪天总结一下好了...

    相关文章

      网友评论

          本文标题:2

          本文链接:https://www.haomeiwen.com/subject/aaloottx.html