Module: json

import json

JSON
Python
object
dict
array
list
string
str
number (int)
int
number (real)
float
true
True
false
False
null
None

data=json.loads(json_string)

print(data) 

new_string=json.dumps(data) 

Comments