Answers for "how to read in a json file in python form rest api"

8

save json file python

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)
Posted by: Guest on July-28-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 read in a json file in python form rest api"

Code answers related to "Javascript"

Browse Popular Code Answers by Language