Answers for "write json data in file python"

12

python json save to file

with open('output.json', 'w') as outfile:
    json.dump(data, outfile)
Posted by: Guest on January-18-2021
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 "write json data in file python"

Code answers related to "Javascript"

Browse Popular Code Answers by Language