I answered a question earlier where the OP asked how he can remove backslashes from a string. This is how the backslashes looked like in the OP's string:
"I don\'t know why I don\'t have the right answer"
This was my answer:
a = "I don\'t know why I don\'t have the right answer"
b = a.strip("/")
print b
This removed the backslashes from the string but my answer was down-voted and I received a comment that said "there are so many things wrong with my answer that it's hard to count" I totally believe that my answer is probably wrong but I would like to know why so I can learn from it. However, that question was deleted by the author so I couldn't reply to the comment there to ask this question.