Implementing a backspace in Python 3.3.2 Shell using Idle
There are several folks on here looking for backspace answers in Python. None of the questions I have searched have answered this for me, so here goes: The Simple Goal : be able to print out a status string on one line, where the next status overwrites the first. Similar to a % complete status, where instead of scrolling a long line of 1%\n, 2%, ... etc. we just overwrite the first line with the newest value. Now the question. When I type this in idle: print("a\bc") I get this as output: ac with what looks like an odd box with a circle between the 'a' and 'c'. The same thing happens when using