Answers for "python how to read from json file"

66

python read json file

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

print(data)
Posted by: Guest on April-08-2020

Code answers related to "python how to read from json file"

Python Answers by Framework

Browse Popular Code Answers by Language