Answers for "how to store and acces data in a JSOn file using python"

12

open json file python

import json

with open('data.txt') as json_file:
    data = json.load(json_file)
Posted by: Guest on March-02-2020
1

write json pythonb

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

Code answers related to "how to store and acces data in a JSOn file using python"

Python Answers by Framework

Browse Popular Code Answers by Language