Answers for "ijson read file python"

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
1

read file json

with open('file.txt', 'r') as f:
	data = f.read()
Posted by: Guest on May-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language