我是python3的新手,我需要从套接字获取传入的字节并将其存储为字符串。
print(input_bytes)
b'data:\x00,\xff'
我不需要解码数据
byte_input_to_string = input_bytes
print(byte_input_to_string)
b'data:\x00,\xff'
file = open('byte_data.txt','w')
file.write(byte_input_to_string)
file.close()
我需要将数据存储为字符串,而无需对其进行解码。我只想要相同的数据,但是要作为字符串,所以我可以解析它,等等。
答案 0 :(得分:0)
file.write(str(byte_input_to_string))