本文均在 Python 3 下测试通过,python 2.x 会略有不同。
1. str/bytes
>> s = '123'
>> type(s)
str
>> s = b'123'
bytes
2. str 与 bytes 之间的类型转换
str 与 bytes 之间的类型转换如下:
- str ⇒ bytes:
bytes(s, encoding='utf8')
- bytes ⇒ str:
str(b, encoding='utf-8')
此外还可通过编码解码的形式对二者进行转换,
- str 编码成 bytes 格式:
str.encode(s)
- bytes 格式编码成 str 类型:
bytes.decode(b)
3. strings 分别在 Python2、Python 3下
What is tensorflow.compat.as_str()?
Python 2 将 strings 处理为原生的 bytes 类型,而不是 unicode,
Python 3 所有的 strings 均是 unicode 类型。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步