Answers for "code to save dictionary to json file so that it can be read easily"

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

Code answers related to "code to save dictionary to json file so that it can be read easily"

Python Answers by Framework

Browse Popular Code Answers by Language