# 交互式编码# Python3 的字符串使用Unicode,但最常用的编码就是utf-8,下面给出交互式修改编码的方法s = 'Python-中文'print(s)b = s.encode('utf-8')print(b)print(b.decode('utf-8'))
本文共 196 字,大约阅读时间需要 1 分钟。
# 交互式编码# Python3 的字符串使用Unicode,但最常用的编码就是utf-8,下面给出交互式修改编码的方法s = 'Python-中文'print(s)b = s.encode('utf-8')print(b)print(b.decode('utf-8'))
转载于:https://www.cnblogs.com/RHadoop-Hive/p/10431587.html