Python中open函数:FileNotFoundError: [Errno 2] No such file or directory 错误的三种解决尝试

Python中open函数:FileNotFoundError: [Errno 2] No such file or directory 错误的三种解决尝试

1.重命名原文件,更改原文件后缀名。或更改程序中读取文件名。

原文件改名:city.txt → city 或 city → city.txt
程序读取更改:‘city.txt’ → ‘city’ 或 ‘city’ → ‘city.txt’ 或 'city.txt’→ 'city.txt.txt’
注:要求读取文件与程序在同一路径下。

2.采用绝对路径的方法来打开文件。

例:‘city.txt’ → ‘D:\city.txt’ 或 r’D:\city.txt’

3.在2的基础上,尝试使用"/“代替”\",或使用"\\“代替”\"。

例:'D:\city.txt’→ ‘D:/city.txt’ 或 'D:\city.txt’→ 'D:\city.txt’

2020.4.3

你可能感兴趣的:(python笔记)