python3 读写json文件

code

import json

new_dict={"func_name":"https://www.cnblogs.com/bigberg/p/6430095.html"}
with open("record.json","w") as f:
    json.dump(new_dict,f)

with open("record.json",'r') as load_f:
    load_dict = json.load(load_f)
    print(load_dict)

原文地址:https://www.cnblogs.com/sea-stream/p/14049840.html