Thanks for the link, @cunderw.
@manuelaneena, based on the suggested article the loads method is what you need. Just load the Json library.
Example from this page:
import json # some JSON: x = '{ "name":"John", "age":30, "city":"New York"}' # parse x: y = json.loads(x)
This should work: https://www.w3schools.com/python/python_json.asp
Thanks for the link, @cunderw.
@manuelaneena, based on the suggested article the loads method is what you need. Just load the Json library.
Example from this page:
import json # some JSON: x = '{ "name":"John", "age":30, "city":"New York"}' # parse x: y = json.loads(x)
Subject | Author | Latest Post |
---|---|---|