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:

#
# 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 -----------
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!