JSON: Difference between revisions
From charlesreid1
No edit summary |
|||
| Line 8: | Line 8: | ||
[[Category: | [[Category:JSON]] | ||
[[Category:Python]] | [[Category:Python]] | ||
Revision as of 09:34, 21 February 2018
to print out pretty json using Python:
d = dict(a=1,b=2,c=3)
with open('pretty.json','w') as f:
json.dump(d, f, separators=(',',': '),indent=4)