Answers for "python 3 json.dump to file"

14

json dump to file

import json

data = {"key": "value"}

with open('data.json', 'w') as jsonfile:
    json.dump(data, jsonfile)
Posted by: Guest on February-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language