Python JSON
Working with JSON data.
Examples
Parse JSON
Convert JSON string to Python dictionary.
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"])Test Your Knowledge
Python Quiz
No quiz available for this topic yet.