VS Code - Python 代码无法正确打开文件

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

我编写此代码是为了使用 VS CODE 在 python 中打开文件 -

with open("Answer Words.txt") as Answer_Words_File: Answer_Words = Answer_Words_File.read()

但它说“ FileNotFoundError:[Errno 2]没有这样的文件或目录:'Answer Words.txt'” 这段代码在我之前使用 PyCharm 时有效,因为文本文件和我的 python 项目位于同一文件夹中。

我还尝试使用文件路径或写入 -

Answer_Words = open("Answer Words.txt", "r")

没有任何效果

我需要使用一些库吗?

python python-3.x file visual-studio-code libraries
1个回答
0
投票

你能发布完整的代码吗我帮你调试它。

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