×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Python
Posted by: Chelsea Trotter
Added: May 13, 2022 3:20 PM
Views: 13
Tags: json
  1. def printjson(input:str):
  2.     import json
  3.     parsed = json.loads(input)
  4.     print(json.dumps(parsed, indent=4))