Result Size: 625 x 571
demo_json.py:
x
 
import json
# some JSON:
x = '{ "name":"John", "age":30, "city":"New York"}'
# parse x:
y = json.loads(x)
# the result is a Python dictionary:
print(y["age"])
C:\Users\My Name>python demo_json.py
30