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 文件的主要内容,如果未能解决你的问题,请参考以下文章