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 a

Re: Typing letters slowly using sys

2013-04-05 Thread John Gordon
In Matt 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 "..." will appear > slowly Have you tried: sys.stdout.write('Load

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 Grant Edwards
On 2013-04-05, 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.edwardsYow! Is it 19

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 d

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

Typing letters slowly using sys

2013-04-05 Thread mattgraves7
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 do. This is what I have. dots = ('') for