Answers for "save python dictionary as json file and read it back"

4

save a dict to json python

import json

with open('data.json', 'w') as fp:
    json.dump(data, fp)
Posted by: Guest on August-26-2020
-1

how to save dictionary to json in python

import json   
       
# Data to be written   
dictionary ={   
  "id": "04",   
  "name": "sunil",   
  "depatment": "HR"
}   
       
# Serializing json    
json_object = json.dumps(dictionary, indent = 4)   
print(json_object) 
Posted by: Guest on March-04-2021

Code answers related to "save python dictionary as json file and read it back"

Python Answers by Framework

Browse Popular Code Answers by Language