Answers for "how to save files in json python"

20

python json save to file

with open('output.json', 'w') as outfile:
    json.dump(data, outfile)
Posted by: Guest on January-18-2021
0

save as json file in python

import json 
    
# python object(dictionary) to be dumped 
dict1 ={ 
    "emp1": { 
        "name": "Lisa", 
        "designation": "programmer", 
        "age": "34", 
        "salary": "54000"
    }, 
    "emp2": { 
        "name": "Elis", 
        "designation": "Trainee", 
        "age": "24", 
        "salary": "40000"
    }, 
} 
    
# the json file where the output must be stored 
out_file = open("myfile.json", "w") 
    
json.dump(dict1, out_file, indent = 6) 
    
out_file.close()
Posted by: Guest on April-12-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language