python|python 如何将字典写为json文件

目录

  • python 将字典写为json文件
    • 字典结构如下
    • 写为json
  • Python txt文件读取写入字典(json、eval)
    • 使用json转换方法
    • 使用str转换方法

python 将字典写为json文件
字典结构如下
res = {"data":[]}temp = {"name":name,"cls":cls}res["data"].append(temp)


写为json
【python|python 如何将字典写为json文件】具体代码如下:
json_data = https://www.it610.com/article/json.dumps(res)with open('E:/res.json', 'a') as f_six:f_six.write(json_data)

即可完成需求~~

Python txt文件读取写入字典(json、eval)
使用json转换方法
1、字典写入txt
import jsondic = {'andy':{'age': 23,'city': 'beijing','skill': 'python'},'william': {'age': 25,'city': 'shanghai','skill': 'js'}}js = json.dumps(dic)file = open('test.txt', 'w')file.write(js)file.close()

2、读取txt中的字典
import jsonfile = open('test.txt', 'r') js = file.read()dic = json.loads(js)print(dic) file.close()


使用str转换方法
1、字典写入txt
dic = {'andy':{'age': 23,'city': 'beijing','skill': 'python'},'william': {'age': 25,'city': 'shanghai','skill': 'js'}} fw = open("test.txt",'w+')fw.write(str(dic))#把字典转化为strfw.close()

2、读取txt中字典
fr = open("test.txt",'r+')dic = eval(fr.read())#读取的str转换为字典print(dic)fr.close()

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读