#!/usr/bin/env python # coding: utf-8 # #
JSON Exercises [9 exercises with solution]
# ### 1. Write a Python program to convert JSON data to Python object. # In[ ]: # ### 2. Write a Python program to convert Python object to JSON data. # In[ ]: # ### 3. Write a Python program to convert Python objects into JSON strings. Print all the values. # In[ ]: # ### 4. Write a Python program to convert Python dictionary object (sort by key) to JSON data. Print the object members with indent level 4. # In[ ]: # ### 5. Write a Python program to convert JSON encoded data into Python objects. # In[ ]: # ### 6. Write a Python program to create a new JSON file from an existing JSON file. # In[ ]: # ### 7. Write a Python program to check whether an instance is complex or not. # In[ ]: # ### 8. Write a Python program to check whether a JSON string contains complex object or not. # In[ ]: # ### 9. Write a Python program to access only unique key value of a Python object. # In[ ]: # #### Problem's Solution: [https://www.w3resource.com/python-exercises/python-json-index.php](https://www.w3resource.com/python-exercises/python-json-index.php)