您需要解码bytes对象以产生一个字符串。可以使用字符串类中的解码函数来完成此操作,该函数将接受然后使用您要解码的编码。
my_str = b"Hello" #b表示其为字节字符串 new_str = my_str.decode('utf-8') #使用utf-8编码进行解码 print(new_str)
输出结果
这将给出输出
Hello
一旦将字节作为字符串,就可以使用JSON.dumps方法将字符串对象转换为JSON。
my_str = b'{"foo": 42}' #b表示其为字节字符串 new_str = my_str.decode('utf-8') #使用utf-8编码进行解码 import json d = json.dumps(my_str) print(d)
输出结果
这将给出输出-
"{\"foo\": 42}"