Как прочитать файл json в переполнении стека Python

import json

with open('strings.json') as f:
    d = json.load(f)
    print(d)
Drab Dolphin