发布网友 发布时间:2022-04-24 00:35
共1个回答
热心网友 时间:2023-10-15 19:30
#读 file = 'test.json' fp = open(file, 'r') dict = json.mp(fp.read()) fp.close() #写 testDict = {'a':1,'b':2} file = 'my.json' fp = open(file,'w+') fp.write(json.loads(testDict)) fp.close()
热心网友 时间:2023-10-15 19:30
#读 file = 'test.json' fp = open(file, 'r') dict = json.mp(fp.read()) fp.close() #写 testDict = {'a':1,'b':2} file = 'my.json' fp = open(file,'w+') fp.write(json.loads(testDict)) fp.close()