提问人:hershey10 提问时间:10/20/2023 更新时间:10/20/2023 访问量:32
为什么它找到了文件,但又说它不存在?[复制]
why is it finding the file but then it says its not there? [duplicate]
问:
我正在尝试打印出我在名为“教师表”的文件夹中的 excel 文件的内容。该文件名为“12.xlsx”。我运行一个循环来检查文件是否在那里,它找到了它。你可以说,因为它运行循环中的内容。但是当我尝试打印出其内容时,它说找不到该文件。代码有什么问题?
答:
0赞
nikhil int
10/20/2023
#1
尝试将文件路径解析为原始字符串;r"C:/Users/ .. /.. /.. "
评论
dataframe = pd.read_excel(os.path.join(path, file))
.