Re: print problem

2008-06-18 Thread Peter Pearson
On Tue, 17 Jun 2008 04:46:38 -0300, Gabriel Genellina wrote: > En Tue, 17 Jun 2008 04:10:41 -0300, Rich Healey escribió: >> Gabriel Genellina wrote: >>> En Tue, 17 Jun 2008 03:15:11 -0300, pirata <[EMAIL PROTECTED]> escribió: >>> I was trying to print a dot on console every second to indicates

Re: print problem

2008-06-17 Thread Chris
On Jun 17, 8:15 am, pirata <[EMAIL PROTECTED]> wrote: > I was trying to print a dot on console every second to indicates > running process, so I wrote, for example: > > for i in xrange(10): >     print ".", >     time.sleep(1) > > Idealy, a dot will be printed out each second. But there is nothing

Re: print problem

2008-06-17 Thread Gabriel Genellina
En Tue, 17 Jun 2008 04:10:41 -0300, Rich Healey <[EMAIL PROTECTED]> escribió: > Gabriel Genellina wrote: >> En Tue, 17 Jun 2008 03:15:11 -0300, pirata <[EMAIL PROTECTED]> escribió: >> >>> I was trying to print a dot on console every second to indicates >>> running process, so I wrote, for example:

Re: print problem

2008-06-17 Thread Rich Healey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gabriel Genellina wrote: > En Tue, 17 Jun 2008 03:15:11 -0300, pirata <[EMAIL PROTECTED]> escribió: > >> I was trying to print a dot on console every second to indicates >> running process, so I wrote, for example: >> >> for i in xrange(10): >> pr

Re: print problem

2008-06-16 Thread Gabriel Genellina
En Tue, 17 Jun 2008 03:15:11 -0300, pirata <[EMAIL PROTECTED]> escribió: > I was trying to print a dot on console every second to indicates > running process, so I wrote, for example: > > for i in xrange(10): > print ".", > time.sleep(1) > > Idealy, a dot will be printed out each second. B