Skip to content

Instantly share code, notes, and snippets.

@acbetter
Created July 23, 2018 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acbetter/c4e445e94a8e5c06694d9c7c004fc0ab to your computer and use it in GitHub Desktop.
Save acbetter/c4e445e94a8e5c06694d9c7c004fc0ab to your computer and use it in GitHub Desktop.
Read Json File by Python
import json
import pprint
with open('data.json') as data_file:
data = json.load(data_file)
pprint.pprint(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment