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