Answers for "read data from json in for pyhton"

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 "read data from json in for pyhton"

Python Answers by Framework

Browse Popular Code Answers by Language