我是编程的初学者,我一直被这个“FileNotFoundError: [Errno 2] No such file or directory:”错误所困扰。我想加载一个与我的 python 脚本位于同一文件夹中的 JSON 文件。
with open("dictionnaire.json") as file:
data = json.load(file)
我使用的是 python 3.9.0,我不明白有什么问题。请问可以吗?
谢谢
答案 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))