标签:span python enc 编码 strong 解码 转换 bytes size
1、编码(encode)
字符串转字节串叫编码
str ------------> bytes
b = s.encode(encoding=‘utf-8‘)
2、解码(decode)
字节串转字符串叫解码
bytes ----------> str
s = b.decode(encoding=‘utf-8‘)
标签:span python enc 编码 strong 解码 转换 bytes size
原文地址:https://www.cnblogs.com/longyuu/p/14180155.html