I am using python's json module to pretty print a json String which looks like below
"{"content" : "{"key" : "value"}","otherContent: "{"key2":"value"}"}"
i want it to look like so when i print it
{
c1: {
key: value
},
c2: {
key2: value
}
}
or something similar to this format, how can i achieve this ?