On 25 jan, 23:30, Sean DiZazzo wrote:
> On Jan 24, 11:27 am, Rémi wrote:
>
>
>
> > Hello everyone,
>
> > 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 wit
On Jan 24, 11:27 am, Rémi wrote:
> Hello everyone,
>
> 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 d
On 2010-01-25, Hans Mulder wrote:
> Grant Edwards wrote:
>> On 2010-01-24, R?mi 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
Grant Edwards wrote:
On 2010-01-24, R?mi 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 downloadin
My apologies, I did not run the lines properly.
Thanks, that works great now.
If I understand well, \r erases the last line. How about erasing the
previous lines?
For example when writing
sys.stdout.write("1\n2\n")
sys.stdout.write("\r3")
the "1" is still visible.
--
Rémi
On 24 jan, 20:53, Gra
On 2010-01-24, R?mi wrote:
> Thank you for your answer, but that does not work:
Works fine for me.
> the second line is printed after the first one.
Not when I run it.
There's not much more I can say given the level of detail
you've provided.
--
Grant
--
http://mail.python.org/mailman/li
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 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 afte
On 2010-01-24, R?mi 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
Hello everyone,
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