Answers for "how to write in json with python"

3

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 "how to write in json with python"

Code answers related to "Javascript"

Browse Popular Code Answers by Language