Read and parse JSON in Python
JSON is commonly used in modern applications for data storage and transfers. Pretty much all programming languages provide APIs to parse JSON.
In Python, you can use json package to parse JSON. Function loads can be used to convert a string object to a JSON object.
Install the package via Pip:
pip install json
Code snippet
import json jsonStr=""" {"Name":"A","Value":2} """ print(jsonStr) json_obj = json.loads(jsonStr) print(json_obj["Name"]) print(json_obj["Value"])
info Last modified by Raymond 3 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.