open json file in python code example
Example 1: python read json file
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
print(data)
Example 2: open json file python
import json
with open('data.txt') as json_file:
data = json.load(json_file)
Example 3: python json open file
import json
with open(file_name, 'r') as f:
data = json.load(f)
with open(file_name, 'w') as f:
json.dump(data, f)
Example 4: get json from file python
import json
with open('data.txt') as json_file:
data = json.load(json_file)
for p in data['people']:
print('Name: ' + p['name'])
print('Website: ' + p['website'])
print('From: ' + p['from'])
print('')
Example 5: how to print a json file in python
import json
f = open('data.json',)
data = json.load(f)
for i in data['emp_details']:
print(i)
f.close()