Answers for "write a dictionary to json file python"

2

create dict from json file python

import json

with open("data.json", "r") as json_file:
    my_dict = json.load(json_file)
Posted by: Guest on May-24-2021
-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 "write a dictionary to json file python"

Python Answers by Framework

Browse Popular Code Answers by Language