Python中字符串与字节之间相互转换

Python中字符串与字节之间相互转换

a = b"Hello, world!"   # bytes object
b = "Hello, world!" # str object

字符串转字节 str --> bytes

# 字符串转字节  str --> bytes
print(str.encode(b)) # 默认 encoding="utf-8"
print(bytes(b, encoding="utf8"))
print(b.encode()) # 默认 encoding="utf-8"

字节转字符串 bytes --> str

​# 字节转字符串  bytes --> str
print(bytes.decode(a)) # 默认encoding="utf-8"
print(str(a, encoding="utf-8"))
print(a.decode()) # 默认 encoding="utf-8"

上一篇:SSH Secure Shell Client中文乱码的解决方法


下一篇:Swift 进阶 第 4 课 集合类型协议