I am building a string of following pattern
"Key1":"Value1"
"Key1232131":"Value2"
"Key12321":"Value3"
I want to format it like
"Key1" : "Value1"
"Key1232131" : "Value2"
"Key12321" : "Value3"
I tried to insert them in a dictionary and pretty print it but that doesn't do it. I think I might need a table like representation. What can I use in python/in general to achieve this?