我试图导入Excel文件,该文件是不是比脚本的文件夹内。 我需要一个以上的文件夹,然后到另一个文件夹(B_folder),并有文件2_file.xlsx
我试过了:
df = pd.read_excel(r'..\B_folder\2_file.xlsx')
并得到了:
FileNotFoundError: [Errno 2] No such file or directory: '..\\B_folder\\2_file.xlsx'
也尝试:
foreslash而不是反斜线
不带路径之前,“R”
但是我总是得到上述错误信息或者这一个:
OSError: [Errno 22] Invalid argument: '..\\B_folder\2_file.xlsx'
怎么了?