美文网首页
python 2.x中的中文编码

python 2.x中的中文编码

作者: Bill2088 | 来源:发表于2017-07-31 14:16 被阅读0次

    各种编码示例

    test = u"你好"    # 以unicode编码方式赋值
    # 原始编码方式:unicode:u'\u4f60\u597d'
    test
    # 重新编码:gbk:'\xc4\xe3\xba\xc3'
    test.encode('gbk')
    # 重新编码:utf-8:'\xe4\xbd\xa0\xe5\xa5\xbd'
    test.encode('utf-8')
    
    

    相关文章

      网友评论

          本文标题:python 2.x中的中文编码

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