Skip to content

Instantly share code, notes, and snippets.

@ShayekhBinIslam
Last active April 30, 2020 10:07
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 ShayekhBinIslam/ed04ba862551daf3df7660924da08cf8 to your computer and use it in GitHub Desktop.
Save ShayekhBinIslam/ed04ba862551daf3df7660924da08cf8 to your computer and use it in GitHub Desktop.
Pretty Print Json
import json
def pretty_print_json(data, indent=2):
print(json.dumps(json.loads(data), indent=indent))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment