w3resource

Python JSON: Convert JSON data to Python object

Python JSON: Exercise-1 with Solution

Write a Python program to convert JSON data to Python object.

Sample Solution:-

Python Code:

import json
json_obj =  '{ "Name":"David", "Class":"I", "Age":6 }'
python_obj = json.loads(json_obj)
print("\nJSON data:")
print(python_obj)
print("\nName: ",python_obj["Name"])
print("Class: ",python_obj["Class"])
print("Age: ",python_obj["Age"]) 

Output:

JSON data:
{'Name': 'David', 'Class': 'I', 'Age': 6}

Name:  David
Class:  I
Age:  6
 

Flowchart:

Flowchart: Convert JSON data to Python object.

Python Code Editor:


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Python JSON Exercises Home.
Next: Write a Python program to convert Python object to JSON data.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Python: Unknown Arguments Using *arguments

If your function can take in any number of arguments then add a * in front of the parameter name:

def myfunc(*arguments):
 for a in arguments:
   print a
myfunc(a)
myfunc(a,b)
myfunc(a,b,c)