Re: [Tutor] While Loops and Modules

2007-12-06 Thread bhaaluu
Greetings, On Dec 6, 2007 12:44 AM, earlylight publishing <[EMAIL PROTECTED]> wrote: > Hello again to all the wonderfully helpful folks on this list. Today I did > my Google homework and I found this neat bit of code for a countdown timer. > > import time > import threading > class Timer(threadin

[Tutor] While Loops and Modules

2007-12-05 Thread earlylight publishing
Hello again to all the wonderfully helpful folks on this list. Today I did my Google homework and I found this neat bit of code for a countdown timer. import time import threading class Timer(threading.Thread): def __init__(self, seconds): self.runTime = seconds threadin