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
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
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
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()
#