I want to replace a string with (double quotes + string). Need to use it into python.
Input : {responseHeader:{status:0,QTime:94}}
Output : {"responseHeader":{"status":0,"QTime":94}}
Tried /[^\d\W]+/g regex to get only string but don't know how to replace it with (double quotes + string).