1import json
2
3with open('path_to_file/person.json') as f:
4 data = json.load(f)
5
6print(data)
1import json
2
3with open('path_to_file/person.json') as f:
4 data = json.load(f)
5print(data)
6
7flx = json.dumps(data, ensure_ascii=False, indent=4)
8print(flx)
1import json
2
3with open('data.txt') as json_file:
4 data = json.load(json_file)
5 for p in data['people']:
6 print('Name: ' + p['name'])
7 print('Website: ' + p['website'])
8 print('From: ' + p['from'])
9 print('')
10
1import json
2arr = json.loads("example.json")
3# Do nifty stuff with resulting array.
4