Answers for "how to save a dict as jsono in python"

-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

Python Answers by Framework

Browse Popular Code Answers by Language