[Tutor] Code Regress

2016-02-01 Thread Evan Sommer
Hey again Alan! Sorry it has been so long since I have been in contact. I tried the code suggestion that you proposed in december, and while it did count down time, it actually set me back in a way because the display is not how I desired it to be. The way the display looks in this program below

Re: [Tutor] Countdown Clock Programming Question

2015-12-15 Thread Evan Sommer
modifications that > you suggested? I tried changing the code with your recommendations and I > keep getting syntax errors. > > If you could do that, I would greatly appreciate it!! > > Thank you for all your help! > > Evan Sommer > > On Tue, Nov 24, 2015 at 9:01 AM, E

Re: [Tutor] Countdown Clock Programming Question

2015-11-30 Thread Evan Sommer
Hello again Alan! Do you think you could write a revised code with the modifications that you suggested? I tried changing the code with your recommendations and I keep getting syntax errors. If you could do that, I would greatly appreciate it!! Thank you for all your help! Evan Sommer On Tue

[Tutor] Countdown Clock Programming Question

2015-11-24 Thread Evan Sommer
es --> 240 seconds for t in range(60,-1, -1): # format as 2 digit integers, fills with zero to the left # divmod() gives minutes, seconds sf = "{:01d}:{:02d}".format(*divmod(t, 60)) #print(sf) # test time_str.set(sf) root.update() #