# 将Unicode转化为普通Python字符串:"encode"
utf8string = unicodestring.encode("utf-8")
将普通Python字符串转化为Unicode:"decode"
plainstring1 = unicode(utf8string, "utf-8")
# 将Unicode转化为普通Python字符串:"encode"
utf8string = unicodestring.encode("utf-8")
将普通Python字符串转化为Unicode:"decode"
plainstring1 = unicode(utf8string, "utf-8")