Comment lire le fichier JSON dans Python Stack Overflow

import json

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