I am writing a program in Python and want to replace the last character printed in the terminal with another character.
Pseudo code is:
print "Ofen",
print "\b", # NOT NECCESARILY \b, BUT the wanted print statement that will erase the last character printed
print "r"
I'm using Windows8 OS, Python 2.7, and the regular interpreter.
All of the options I saw so far didn't work for me. (such as: \010
, '\033[#D'
(# is 1), '\r'
).
These options were suggested in other Stack Overflow questions or other resources and don't seem to work for me.
EDIT: also using sys.stdout.write
doesn't change the affect. It just doesn't erase the last printed character. Instead, when using sys.stdout.write
, my output is:
Ofenr # with a square before 'r'
My questions:
- Why don't these options work?
- How do I achieve the desired output?
- Is this related to Windows OS or Python 2.7?
- When I find how to do it, is it possible to erase manually (using the wanted eraser), delete the
'\n'
that is printed in python'sprint
statement?