打开 json 文件错误:FileNotFoundError: [Errno 2] 没有那个文件或目录

时间:2021-04-29 21:34:25

标签: json python-3.x

我是编程的初学者,我一直被这个“FileNotFoundError: [Errno 2] No such file or directory:”错误所困扰。我想加载一个与我的 python 脚本位于同一文件夹中的 JSON 文件。

with open("dictionnaire.json") as file:
data = json.load(file)

我使用的是 python 3.9.0,我不明白有什么问题。请问可以吗?

谢谢

1 个答案:

答案 0 :(得分:0)

你必须像这样指定路径:

 with open("./path_to_json_file/data.json", 'r') as f:
      data = json.load(f)
      f.close()



for key, value in data.items():
   print("key: {} | value: {}".format(key, value))