tag (json)

archive

pretty print json in python Jan
15
1
3

import json
mydata = json.loads(output)
print json.dumps(mydata, indent=4)

comments