what is the purpose of backward-slash b in python, I ran print \"\\\"foo\\bar\" in the python interpreter and got this result:
>>>p
See the string literal documentation:
\b ASCII Backspace (BS)
\b
It produces a backspace character. Your terminal backspaced over the second o when printing that character.
o