save json to file

38

json dump to file -

import json

data = {"key": "value"}

with open('data.json', 'w') as jsonfile:
    json.dump(data, jsonfile)

python json dump to file -

import json
with open('data.json', 'w') as f:
    json.dump(data, f)

save json to file -

import json

data = {}

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)

Comments

Submit
0 Comments