我编写此代码是为了使用 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")
没有任何效果
我需要使用一些库吗?
你能发布完整的代码吗我帮你调试它。