Python -- 编码(1)

Python2 允许这样拼接 u'hello'+'world',hello数据类型为unicode,也允许 b'hello'+'world'拼接,hello类型为str。而world数据类型str 实际存放为bytes,Python2能识别到ASCII码中存在的字符  并转换为unicode进行拼接,但中文字符不行  如u'你好'+'世界'

Python -- 编码(1)

 

但Python3 就不允许这样拼接 b'hello'+'world'  ,能 u'hello'+'world' 和 u'你好'+'世界' , 严格区分str和 bytes类型

Python -- 编码(1)

 

上一篇:misc—txt零宽度字符隐写+例题理解


下一篇:docker入门教程