uaveiro-leci/1ano/2semestre/labi/tema04/src/json_reader.py

11 lines
175 B
Python
Raw Normal View History

import json
def main(args=None):
data = json.load(open('../datafiles/example3.json', 'r'))
print(json.dumps(data, indent=4))
if __name__ == '__main__':
main()