Thank you for your answer, but that does not work : the second line is printed after the first one.

--
Rémi


Grant Edwards wrote:
On 2010-01-24, R?mi <babedo...@yahoo.fr> wrote:

I would like to do a Python application that prints data to stdout, but
not the common way. I do not want the lines to be printed after each
other, but the old lines to be replaced with the new ones, like wget
does it for example (when downloading a file you can see the percentage
increasing on a same line).

sys.stdout.write("Here's the first line")
time.sleep(1)
sys.stdout.write("\rAnd this line replaces it.")

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to