import json #Read JSON file f = open('sample.json', 'r') data = json.load(f) for i in data: print (i['hoge'])
Recommended Posts