import json
from pprint import pprint
data = json.load(open('data.json'))
pprint(data)
This will store the JSON data in the dictionary named data.
pprint() simply prints your data in a neat manner, preserving the indentation
Hope it helps!!
If you need to know more about Python, It's recommended to join Python course today.
Thanks!