pycharm遇到问题 FileNotFoundError: [Errno 2] No such file or directory: 'readme'

当读取文件的时候遇到问题:FileNotFoundError: [Errno 2] No such file or directory: 'readme'
开始代码是这样的(小练习):

 file=open"readme.txt")
 text=file.read(text)
 print(text)
 file.close()

运行一直出现错误,显示文件不存在。改代码为如下还是显示错误。

 file=open"readme.txt",encoding='UTF-8')
 text=file.read(text)
 print(text)
 file.close()

后来发现我是在桌面上新建的文本文件,而.py文件是在D盘中,后来将txt文件放在和.py文件同一路径下就运行成功了。

小贴士:如果忘记关闭文件,则会造成资源消耗,因此在开发中,通常先编写打开和关闭的代码 。

你可能感兴趣的:(python)