I have same problem like there. My error call is builtins.AttributeError: module 'json' has no attribute 'load' but I imported json as first so what is wrong?
import json
f = open('data.json')
data = json.load(f)
for i in data['emp_details']:
print(i)
f.close()