python中unicode对象和str对象拼接在一起,会自动将str对象转换成unicode对象
即:a="aa"
b=u"bb"
c=a+b
type(c)会打印出此对象为unicode对象
另外,json.loads(a)返回的对象,key和value的类型均是unicode类型
时间: 2024-11-08 10:00:00
python中unicode对象和str对象拼接在一起,会自动将str对象转换成unicode对象
即:a="aa"
b=u"bb"
c=a+b
type(c)会打印出此对象为unicode对象
另外,json.loads(a)返回的对象,key和value的类型均是unicode类型