# 字节 对象
b = b"lishaoshu"
# str 对象
s = "lishaoshu"
# str to bytes
sb = bytes(s, encoding = "utf8")
# bytes to str
bs = str(b, encoding = "utf8")
# 方法二
# str to bytes
sb2 = str.encode(s)
# bytes to str
bs2 = bytes.decode(b)
pyqt str转bytes
最新推荐文章于 2024-07-20 06:01:07 发布