Following python code is not giving me a backspace as it's supposed to.
var=('hel\b')
print(var)
Outputs:
hel
>>>
But setting terminal character as nothing works as expected.
var=('hel\b')
print(var,end='')
Outputs:
he>>>
In following example.
var=('hello\b\b \b')
print(var)
Outputs:
hel o
>>>
What exactly is happening here ?
Am coding in Python 3.5 in Notepad++. Os is Windows 7, 32-bit.
 
     
    