如何在python中的解码字符串中添加双引号?

时间:2017-11-30 20:17:35

标签: windows python-3.x utf-8

有一个字节格式字符串,按如下方式解码:

     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"

我尝试了各种方法,但无法成功解决这个问题。因此,请帮助,严重卡住。

0 个答案:

没有答案