Q:

python json.dumps pretty print

json.dumps(x, indent=4)
1

  import json

# some JSON:
x =  '{ "name":"John", "age":30, "city":"New 
  York"}'

# parse x:
y = json.loads(x)

# the result is a 
  Python dictionary:
print(y["age"]) 
3

    json.dumps(x, indent=4, sort_keys=True)
 
2

New to Communities?

Join the community