I am trying to iterate in a string and find a character on it and delete it. For example, my string is "HowAre\youDoing" and I want the string "HowAreyouDoing" back (without the character '\'. My Loop is:
for c in string:
if c == '\':
The Point is that '\' is a Special character and it doesn´t allow me to do it in this way. Does anybody knows how can I proceed? thanks