Answers for "create json file pyhton"

2

save json to file

import json

data = {}

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)
Posted by: Guest on February-27-2020
2

write json pythonb

>>> import json
>>> data = {'item': 'Beer', 'cost':'£4.00'}
>>> jstr = json.dumps(data, indent=4)
>>> print(jstr)
{
    "item": "Beer",
    "cost": "u00a34.00"
}
Posted by: Guest on November-29-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language