python中unicode 和 str
python中的str对象其实就是"8-bit string" ,字节字符串,本质上类似java中的byte[]。
而Python中的unicode对象应该才是等同于java中的String对象,或本质上是java的char[]。
str: s = "你好"
unicode: u = u"你好“
unicode转化为str,采用encode 编码:
str = u.encode('gbk')
str转化为unicode ,采用decode 解码:
unicode = s.decode('gbk')
转载自:https://blog.csdn.net/yxstory/article/details/78309685
相关文章