1、字典转换为字符串(json.dumps)
jsongeshi={"name":"yajuan","age":"10"}import jsonwith(open("b","w",encoding="utf-8"))as f: json_new=json.dumps(jsongeshi) #字典转换为字符串,write写只支持字符串,不支持字典及list格式,故需转化 f.write(json_new)2、字符串转换为字典
with(open("b",encoding="utf-8"))as f: f1=f.read() #读f文件 f2=json.loads(f1) #字符串转换为字典 print(f2)
转载于:https://www.cnblogs.com/fandonghua/p/11589132.html
相关资源:VB利用官方api读写JSON数据格式文件简单实例