鱼C论坛's Archiver
论坛
›
Python交流
› 如何生成unicode类型的字符串?
Y小y
发表于 2020-8-17 20:35:39
如何生成unicode类型的字符串?
生成str及unicode类型的“中国”字符串
str类型的'中国'保存为变量a
unicode类型的'中国'保存为变量b
聂嘉辉
发表于 2020-8-21 13:06:50
unicode转化为str:
str = unicode.decode('unicode-escape')
str转化为unicode:
unicode = str.encode('unicode-escape')
页:
[1]
查看完整版本:
如何生成unicode类型的字符串?