cara membaca file json di python stack overflow

import json

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