Python JSON Tutorial
Welcome to Python JSON Tutorial!
In this tutorial, we will learn how to handle JSON files or JSON data in Python programs.
Python JSON Tutorials
The following is a list of Python JSON Tutorials, that will cover different use cases of working with JSON data in Python programs.
- Create JSONPython Tutorial to create a JSON string from Python object.
- Read JSON FilePython Tutorial to read a JSON file and store it in a Python object.
- Write JSON to FilePython Tutorial to write JSON string to a file.
- Parse JSON StringPython Tutorial to parse a given JSON string into a Python object.
- Convert Class Object to JSONPython Tutorial to convert given user defined class object to JSON.
- Convert Tuple to JSON ArrayPython Tutorial to convert given Tuple object to a JSON Array.
- Convert CSV to JSON ArrayPython Tutorial to convert given CSV string into a JSON.
- Convert JSON to DictionaryPython Tutorial to convert given JSON string into a Python Dictionary.
- Convert JSON to ListPython Tutorial to convert given JSON (Array) string into a list.
- Convert List to JSONPython Tutorial to convert given List into a JSON Array.