JSON LOAD FROM FILE Python 3
import json
with open('file_to_load.json', 'r') as file:
data = json.load(file)
The Nic
import json
with open('file_to_load.json', 'r') as file:
data = json.load(file)