我不断收到错误:“没有这样的文件或目录”

问题描述 投票:0回答:1

我有一个程序,我想从我的程序访问文本文件。即使代码正确并且文件已在同一目录中创建,PyCharm 仍拒绝访问它。我想知道如何修复这个错误。

我想从我的名为“bonus11”的程序访问一个文本文件“data.txt”。即使代码正确并且文件已在同一目录中创建,程序也无法打开它。 我已经尝试粘贴整个文件路径。

`def get_average(): 以 open("data.txt.py", 'r') 作为文件: 数据 = file.readlines() 返回数据

平均值 = get_average() 打印(平均)`

This is code with the file and directory

我想知道如何从“bonus11”访问名为“data.txt”的文件。我将感谢对代码的任何更改

python pycharm file-not-found filenotfounderror
1个回答
0
投票

路径不对,应该是

with open("./files/data.txt.py", 'r') as file:

© www.soinside.com 2019 - 2024. All rights reserved.