"Fulvio" <[EMAIL PROTECTED]> wrote: > BTW, how to write a number repeatly in the same line and position, without let > the printout to scroll down.
for i in range(100):
print "\r", i,
# do something
print
will work, as long as the message isn't too long, and you're printing to a
console device that does "the usual thing" when it sees a carriage return.
</F>
--
http://mail.python.org/mailman/listinfo/python-list
