共计 348 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,字符串和字节串可以通过 encode() 和 decode() 方法相互转换。
- 将字符串转换为字节串:
s = "Hello"
b = s.encode() # 使用默认编码(utf-8)转换为字节串
print(b) # b'Hello'
# 可以指定其他编码方式
b = s.encode("utf-16")
print(b) # b'\xff\xfeH\x00e\x00l\x00l\x00o\x00'
- 将字节串转换为字符串:
b = b'Hello'
s = b.decode() # 使用默认编码(utf-8)转换为字符串
print(s) # Hello
# 可以指定其他编码方式
s = b.decode("utf-16")
print(s) # Hello
丸趣 TV 网 – 提供最优质的资源集合!
正文完