I am trying to open and parse a Json file using python script and write its content into another Json file after formatting it as I want. Now my source Json file has character /" which I want to replace with a blank. I don't have any issue in parsing or creating news file only the issue is that character is not getting replaced by blank. How do I do it. Earlier I have achieved the same task but then there was no such character in the document that time.
Here is my code
doubleQuote = "\""
try:
    destination = open("TodaysHtScrapedItemsOutput.json","w") # open JSON file for    output
except IOError:
    pass
with open('TodaysHtScrapedItems.json') as f: #load json file
    data = json.load(f)
print "file successfully loaded"
for dataobj in data:
    for news in data[cnt]["body"]:
        news = news.encode("utf-8")
        if(news.find(doubleQuote) != -1): # if doublequotes found in first body tag
        #   print "found double quote"
            news.replace(doubleQuote,"")
        if(news !=""):
            my_news = my_news +" "+ news
    destination.write("{\"body\":"+ "\""+my_news+"\"}"+"\n")
    my_news = ""
    cnt= cnt + 1

 
     
     
     
    