【python】关于文件路径导致文件读取的问题 | 文件读取 | 文件操作 | os模块
已经遇到过很多次在python中读取文件,文件路径中反斜杠使用不标准导致系统无法准确识别路径的问题了。通常这种情况需要在下例中特别注意:file_path = "D:\notebook\test.txt" #错误file_path2 = "D:\\notebook\\test.txt" #正确file_path3 = "D:/notebook/test.txt" #正确with open(file_path, "rb"