In this article, we will see how to read a JSON file in Python with examples,

The first thing you need to do is import the json module,
import json
Step 2:
Now let's create a JSON object that we want to read and store it in a variable,
json_str = """[
{
"name":"Mike",
"age":29,
"city":"New York"
},
{
"name":"John",
"age":21,
"city":"Chicago"
},
{
"name":"Sam",
"age":23,
"city":"London"
},
{
"name":"Brian",
"age":19,
"city":"Madrid"
},
{
"name":"Danny",
"age":27,
"city":"New York"
}
]"""
Step 3:
Now let's convert the JSON string to JSON Object
json_obj= json.loads(json_str)
Step 4:
Now let's read the content of JSON object, not that as we have a JSON Object of arrays, we can read it with its index starting from zero,
print(json_obj[0]["name"])
print(json_obj[0]["age"])
print(json_obj[0]["city"])
print("-----------------")
print(json_obj[1]["name"])
print(json_obj[1]["age"])
print(json_obj[1]["city"])
Full Example to Read JSON in Python:
import json
json_str = """[
{
"name":"Mike",
"age":29,
"city":"New York"
},
{
"name":"John",
"age":21,
"city":"Chicago"
},
{
"name":"Sam",
"age":23,
"city":"London"
},
{
"name":"Brian",
"age":19,
"city":"Madrid"
},
{
"name":"Danny",
"age":27,
"city":"New York"
}
]"""
json_obj = json.loads(json_str)
print(json_obj[0]["name"])
print(json_obj[0]["age"])
print(json_obj[0]["city"])
print("-----------------")
print(json_obj[1]["name"])
print(json_obj[1]["age"])
print(json_obj[1]["city"])
Output:
Mike
29
New York
-----------------
John
21
Chicago
If you are reading JSON where you do not know the size of it and want to iterate over it, you can use a for-each loop
for element in json_obj:
print(element['name'])
print(element['age'])
print(element['city'])
print("-----------")
- Comments in Python Programming
- tkinter - Hello World! Program
- How to install Python 3.11 on Mac
- Python matplotlib segmentation fault: 11 macOS Big Sur
- Change label (text) color in tkinter
- Python Hello World! Program with code example (snippet)
- Calculate discount amount python code
- Take input argument from command line in Python Programming
- How to pip install Python Modules in VSCode
- Tkinter - add x and y padding to label text
- Python raise error with message example
- Check if String Contains a Substring - Python
- Python Program To Calculate Simple Interest (SimpleInterest.py)
- What does b prefix before a String mean in Python?
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to List all Packages installed using pip [Python]
- Convert Float to String in Python
- Change the background of Tkinter label or text
- How to Install Python Modules in VS Code
- Indent Python code in Notepad++
- Validate email address in Python using regular expression (regex)
- Python: Fix command not found pip or pip3 on zsh shell
- TypeError: must be str, not int [Fix Python]
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python - Convert float to String
- Setup synonyms or alias or thesaurus in SharePoint - SharePoint
- SharePoint Server 2016 IT Preview Deprecated Removed features - SharePoint
- Add Calendar to SharePoint Site (Office 365) - SharePoint
- Create SharePoint Site Collection using PowerShell New-SPSite - SharePoint
- What is macOS Ventura? - MacOS
- Android Emulator window was out of view and was recentered - Android-Studio
- Install and Run Jupyter Notebook on Mac (macOS) - Python
- SharePoint List redirect user after submitting form NewForm.aspx - SharePoint