# bytes object
b = b"example"
# str object
s = "example"
# str to bytes
sb = bytes(s, encoding = "utf8")
# bytes to str
bs = str(b, encoding = "utf8")
# an alternative method
# str to bytes
sb2 = str.encode(s)
# bytes to str
bs2 = bytes.decode(b)
python str与bytes之间的转换
原创
©著作权归作者所有:来自51CTO博客作者天道水门的原创作品,请联系作者获取转载授权,否则将追究法律责任
下一篇:mysql初始化报错error while loading shared libraries: libaio.so.1: cannot open shared object file: No such
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Python字符串与Bytes之间的互相转换
Python字符串与
python 字符串 byte转字符串 Python -
Python 了解 bytes 与 str 的区别
Python 有两种类型可以表示字符序列bytes:实例包含的是原始数据,即8位的无符号值(通
python 字符串 二进制数 ico 操作符 -
python str datetime date 之间的转换python 2d