Nono.MA

Load a JSON File with Python

LAST UPDATED MARCH 28, 2022

import json

file = open('my-file.json')
obj = json.load(file)
file.close()

CodePython