摘要: dic = {"name":"boke","age":"18"} #字典 data = json.dumps(dic) #转成json序列化 with open("json_text","w") as f : #创建文件句柄 f.write(data) #写入文件中 注:data = json.du 阅读全文