python str byte 转换

来源:互联网 发布:ipad壁纸 知乎 编辑:程序博客网 时间:2024/05/18 03:35
# bytes object   b = b"example"     # str object   s = "example"     # str to bytes   bytes(s, encoding = "utf8")     # bytes to str   str(b, encoding = "utf-8")     # an alternative method   # str to bytes   str.encode(s)     # bytes to str   bytes.decode(b)

原创粉丝点击