美文网首页Python应用集
Python2 乱码解决方案(Anti-TLDR)

Python2 乱码解决方案(Anti-TLDR)

作者: Solomon_Xie | 来源:发表于2019-01-17 03:34 被阅读0次
    # 首先把所有相关字符串变量检查一遍
    print type(s1)
    print type(s2)
    print type(s3)
    
    # 然后把所有"unicode"格式的字符串转换成"str"格式
    s1 = str(s1)
    

    完成!

    相关文章

      网友评论

        本文标题:Python2 乱码解决方案(Anti-TLDR)

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