📅  最后修改于: 2022-03-11 15:01:55.099000             🧑  作者: Mango
import json
with open('data.json') 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('')