gpt4 book ai didi

python - 使用python打开txt文件时出现FileNotFoundError

转载 作者:行者123 更新时间:2023-12-01 01:35:49 25 4
gpt4 key购买 nike

我正在尝试使用以下代码打开一个 txt 文件进行阅读:-

type_comments = [] #Declare an empty list
with open ('society6comments.txt', 'rt') as in_file: #Open file for reading of text data.
for line in in_file: #For each line of text store in a string variable named "line", and
type_comments.append(line.rstrip('\n')) #add that line to our list of lines.

错误:-

Error  - Traceback (most recent call last):
File "c:/Users/sultan/python/society6/society6_promotion.py", line 6, in <module>
with open ('society6comments.txt', 'rt') as in_file:
FileNotFoundError: [Errno 2] No such file or directory: 'society6comments.txt'

我的脚本在同一目录中已经有一个名为“society6comments.txt”的文件,那么为什么它显示错误?

enter image description here

最佳答案

文本文件与程序位于同一目录中这一事实并不会使该目录成为当前工作目录。将文件的完整路径放入 open() 调用中。

关于python - 使用python打开txt文件时出现FileNotFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52407669/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com