有一个字节格式字符串,按如下方式解码:
byte_string = b'sampletext\r\n'
decoded_string = byte_string.decode("utf-8")
output is: sampletext
现在输出应该有双引号,为此我做了如下:
print( "\""+sampletext+"\"" )
output is: "sampletext
"
expected output should be: "sampletext"
我尝试了各种方法,但无法成功解决这个问题。因此,请帮助,严重卡住。