Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python read json file

import json

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

print(data)
 
PREVIOUS NEXT
Tagged: #python #read #json #file
ADD COMMENT
Topic
Name
4+1 =