2021年12月19日
摘要: Python2 允许这样拼接 u'hello'+'world',hello数据类型为unicode,也允许 b'hello'+'world'拼接,hello类型为str。而world数据类型str 实际存放为bytes,Python2能识别到ASCII码中存在的字符 并转换为unicode进行拼接, 阅读全文
posted @ 2021-12-19 17:21 csy113 阅读(10) 评论(0) 推荐(0) 编辑