python 读写 json 文件

Posted xd_xumaomao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读写 json 文件相关的知识,希望对你有一定的参考价值。

import json

with open("D:\研究生工作\dataset generation\file\obj_vec_dict.json") as f:
    obj_vec = json.load(f)

 

import json

with open("D:\研究生工作\dataset generation\file\obj_vec_dist.json", w) as f:
    json.dump(obj_vec_dist, f)

 

以上是关于python 读写 json 文件的主要内容,如果未能解决你的问题,请参考以下文章

Python 基础 - Json文件读写

python 读写 json 文件

Python读写JSON格式数据

python 读写json

python基础学习3-文件读写集合json函数

python通过json读写序列类型的数据文件