Answers for "how to read data from json python"

14

python read json

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)
Posted by: Guest on March-24-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language