Re: Typing letters slowly using sys

2013-04-05 Thread John Gordon
In 44fa9565-c6cd-4a46-ad28-97417b403...@googlegroups.com mattgrav...@gmail.com writes: dots = ('') for x in dots: sys.stdout.write(x) sys.stdout.flush() time.sleep(0.2) I cannot for the life of me figure out how to get the dots to

Re: Typing letters slowly using sys

2013-04-05 Thread Mitya Sirenef
On 04/05/2013 10:04 AM, mattgrav...@gmail.com wrote: I am using sys to give the effect that I am typing letters slowly. Basically what I want to have happen is have it show Loading.. with the word loading appearing instantly and then the periods appearing slowly, as most loading screens

Re: Typing letters slowly using sys

2013-04-05 Thread Grant Edwards
On 2013-04-05, mattgrav...@gmail.com mattgrav...@gmail.com wrote: dots = ('') for x in dots: sys.stdout.write(x) sys.stdout.flush() time.sleep(0.2) That works just fine for me using Python 2.4, 2.6, 2.7 and 3.2. -- Grant Edwards grant.b.edwards

Re: Typing letters slowly using sys

2013-04-05 Thread Matt
On Friday, April 5, 2013 10:04:49 AM UTC-4, Matt wrote: I am using sys to give the effect that I am typing letters slowly. Basically what I want to have happen is have it show Loading.. with the word loading appearing instantly and then the periods appearing slowly, as most loading

Re: Typing letters slowly using sys

2013-04-05 Thread John Gordon
In b7680abc-4566-4aad-9426-9d8088189...@googlegroups.com Matt mattgrav...@gmail.com writes: Sorry guys, I may have not been clear. The part I pasted does work, but I cannot figure out how to get that to print after the word Loading. So it will instantly print Loading, and then the ...

Re: Typing letters slowly using sys

2013-04-05 Thread inq1ltd
On Friday, April 05, 2013 08:10:53 AM Matt wrote: On Friday, April 5, 2013 10:04:49 AM UTC-4, Matt wrote: I am using sys to give the effect that I am typing letters slowly. Basically what I want to have happen is have it show Loading.. with the word loading appearing instantly and then