我正在尝试从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`