python--中文比较

比较中文是否相等:

if str1.decode("GB2312").encode("utf-8") == str2.decode("GB2312").encode("utf-8"):

    print "=="

注: decode中时str1 str2使用的中文编码方式, encode统一用utf-8形式比较.

原文地址:https://www.cnblogs.com/helloweworld/p/3790648.html