JSON Charge à partir du fichier Python 3

import json

with open('file_to_load.json', 'r') as file:
  data = json.load(file)
The Nic