Python 2.7 IO.Open Readline带有额外的字符\

时间:2017-11-17 16:25:05

标签: python python-2.7 encoding io

我正在尝试使用以下内容打开.c文件

web_test("LunchType",
         "LB=\"foodType\":\"",
         "RB=\",",
         "ORD=ALL",
         "SEARCH=ALL",
         LAST);

使用以下代码打开并阅读内容

def open_file_read_line_by_line(self,file_to_read):
    with io.open(file_to_read,"rt",encoding='utf-8') as f:
        while True:
            readfile = f.readline()
            # readfile = f.read()
            if not readfile:
                break
            yield readfile
    f.close()

阅读第二行时,我得到以下内容

"LB=\\"foodType\\":\\"",

还有一个额外的' \'面前的' \' 。任何人都可以建议我如何纠正这个问题?

0 个答案:

没有答案