\ n即使未指定也会出现在文件路径中

时间:2018-08-06 08:57:20

标签: python-3.x

我正在尝试从csv文件读取文件路径,并将其以变量的形式存储。该函数可以正确读取路径,但是当我使用该变量时,它将在文件路径中添加一个额外的“ \ n”。这是我的代码。

    `def input_path(input_file):
         next(input_file)

         for line in input_file:
             row_heading = line.split(",")
             input_path_value = row_heading[0]
             weather_file_path = row_heading[1]

         return input_path_value, weather_file_path`

我遇到以下错误:\n adds to the file path before "Ahmedabad"

0 个答案:

没有答案