If you use
You can do more and sort json keys! To do that pass
#python #json #dumps #indent #sort #sort_keys
json.dumps()
in order to write a json into a file, it will be wriiten all in one line. You can do more with dumps()
. You can pretty print into the file with indentation using indent
parameter:dumped_json = json.dumps(json.loads(content), indent=4)
You can do more and sort json keys! To do that pass
sort_keys
to dumps
function like below:dumped_json = json.dumps(json.loads(content), indent=4, sort_keys=True)
#python #json #dumps #indent #sort #sort_keys