为什么文件名开头有一个额外的单引号?
Why are the file names coming with an extra single quote at the beginning?
我正尝试在 df.to_excel 中动态命名我的输出文件,如下所示:
df.to_excel(r'C:\Users\excel_outputs\'Solved'+str(f), index = False)
此外,str(f) 包含我的输入文件名并且每次都会更改。我得到的结果文件名是:
'Solvedsheet1
'Solvedsheet2
'Solvedsheet3
我只想:
Solvedsheet1
Solvedsheet2
Solvedsheet3
它是一个字符串,所以....
f = 'sheet1'
x = r"C:\Users\excel_outputs\Solved"+str(f)
print(x)
结果....
C:\Users\excel_outputs\Solvedsheet1
我正尝试在 df.to_excel 中动态命名我的输出文件,如下所示:
df.to_excel(r'C:\Users\excel_outputs\'Solved'+str(f), index = False)
此外,str(f) 包含我的输入文件名并且每次都会更改。我得到的结果文件名是:
'Solvedsheet1
'Solvedsheet2
'Solvedsheet3
我只想:
Solvedsheet1
Solvedsheet2
Solvedsheet3
它是一个字符串,所以....
f = 'sheet1'
x = r"C:\Users\excel_outputs\Solved"+str(f)
print(x)
结果....
C:\Users\excel_outputs\Solvedsheet1