6 lines
97 B
Python
6 lines
97 B
Python
import json
|
|
|
|
def pp(json_obj, indent=2):
|
|
dumps = json.dumps(json_obj, indent=2)
|
|
print(dumps)
|