Difference between revisions of "Python:JSON"

From wiki
Jump to navigation Jump to search
(Created page with ";import json :Enable json functions ;json.dumps(dict, indent=4) :Return the dict nicely structured. Indent each level with 4 spaces. :Can be used on other datatypes too.")
(No difference)

Revision as of 13:10, 16 March 2018

import json
Enable json functions
json.dumps(dict, indent=4)
Return the dict nicely structured. Indent each level with 4 spaces.
Can be used on other datatypes too.