在 Python 中读取文件时遇到问题(使用 PyCharm)

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

我收到一条错误消息“没有这样的文件或目录”,所以我尝试添加 .txt 但它仍然无法工作

我正在学习Python,我正在尝试学习如何读取文件,所以我期望使用从文件读取中编写的代码来读取文件

这是代码:

reading = open("Files/reading")
for line in reading:
 print(line)
python pycharm
1个回答
0
投票

如上所述 - 您需要添加文件扩展名并在最后关闭它。 前提是您的

reading.txt
文本文件确实存在于
Files
文件夹中。

reading = open("Files/reading.txt")
for line in reading:
    print(line)
reading.close()

或者只需将

reading.txt
放入项目文件夹中并指定相对路径。

reading = open("reading.txt")
for line in reading:
    print(line)
reading.close()

因此,我们发现现在不需要指定路径“Files/reading.txt”,因为该文件与脚本位于同一文件夹中。

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