This is a step by step example of how to read a JSON file in a Python program,
Step 1:Make sure you import JSON module,
import json
Step 2:
Now lets read from an external JSON file,
json_file = open("sample-json-file.txt", "r")
Step 3:
Now we need to convert this json_file object to a String,
json_str = json_file.read()
Step 4:
Now lets convert this json_str to an JSON object,
json_obj = json.loads(json_str)
Step 5:
In this example, we will just iterate the array in the JSON file,
for element in json_obj:
print(element['name'])
print(element['age'])
print(element['city'])
print("-----------")
Complete Program:

Content of JSON file
#
# Code2care Python Programs
# How to read JSON File
#
import json
json_file = open("sample-json-file.txt", "r")
json_str = json_file.read()
json_obj = json.loads(json_str)
for element in json_obj:
print(element['name'])
print(element['age'])
print(element['city'])
print("-----------")
Output:
Mike 29 New York ----------- John 21 Chicago ----------- Sam 23 London ----------- Brian 19 Madrid ----------- Danny 27 New York -----------
More Posts related to Python,
- How to add two float numbers in Python
- tkinter - Hello World! Program
- Convert Float to String in Python
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- How to List all Packages installed using pip [Python]
- Check if String Contains a Substring - Python
- Change label (text) color in tkinter
- Where does brew install python in macOS
- Validate email address in Python using regular expression (regex)
- How to uninstall pip Python packages
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Fix command not found pip or pip3 on zsh shell
- Check version of pip package installer for Python
- 3 Python program to add two numbers
- Calculate discount amount python code
- How to add borders to tkinter label text
- How to install Python 3.9 using brew on Mac
- Python Program To Calculate Simple Interest (SimpleInterest.py)
- Comments in Python Programming
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to take user input from the console in a Python program
- Install and Run Jupyter Notebook on Mac (macOS)
- Tkinter - add x and y padding to label text
- 7 Python Arithmetic Operators with Examples [Tutorial]
- Python Sleep Function/Method Code Example
More Posts:
- How to check if an element is hidden using jQuery code? - jQuery
- How to fix command not found brew (bash, zsh) on macOS Terminal - MacOS
- How to rename package name in Android Studio - Android-Studio
- [Vi/Vim] How to move cursor to the start of a line - MacOS
- Facebook, Messenger, and Instagram down in many regions - UK, Europe, Australia - Facebook
- Windows 10 now has a new enhanced Calculator with a new icon - News
- How to rerun last command in Zsh shell - HowTos
- Google Celebrates Rosa Bonheur 200th birthday with a Google Doodle - Google