how to dump dictionnary into json file python code example
Example 1: write dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, fp)
Example 2: save a dict to json python
import json
with open('data.json', 'w') as fp:
json.dump(data, fp)