python--中文比较
时间:2014-06-18 19:26:41
收藏:0
阅读:384
比较中文是否相等:
if str1.decode("GB2312").encode("utf-8") == str2.decode("GB2312").encode("utf-8"):
print "=="
注: decode中时str1 str2使用的中文编码方式, encode统一用utf-8形式比较.
评论(0)