主页 > 编程资料 > Python >
发布时间:2018-10-07 作者:apizl 阅读:608次

方法一, 使用decode :

s = b"abcd"
s.decode("utf-8")

Python3 bytes to string 字节码转字符串

方法二, 使用str:

s = b"abcd"
str(s, "utf-8")

Python3 bytes to string 字节码转字符串

关键字词: