Re: [Tutor] finding difference in time

2009-05-15 Thread Martin Walsh
Kent Johnson wrote: > On Fri, May 15, 2009 at 12:46 AM, R K wrote: >> Gurus, >> >> I'm trying to write a fairly simple script that finds the number of hours / >> minutes / seconds between now and the next Friday at 1:30AM. >> >> I have a few little chunks of code but I can't seem to get everything

Re: [Tutor] finding difference in time

2009-05-15 Thread Dave Angel
R K wrote: Gurus, I'm trying to write a fairly simple script that finds the number of hours / minutes / seconds between now and the next Friday at 1:30AM. I have a few little chunks of code but I can't seem to get everything to piece together nicely. import datetime,time now = datetime.dat

Re: [Tutor] finding difference in time

2009-05-15 Thread Kent Johnson
On Fri, May 15, 2009 at 12:46 AM, R K wrote: > Gurus, > > I'm trying to write a fairly simple script that finds the number of hours / > minutes / seconds between now and the next Friday at 1:30AM. > > I have a few little chunks of code but I can't seem to get everything to > piece together nicely.

Re: [Tutor] finding difference in time

2009-05-15 Thread Andre Engels
On Fri, May 15, 2009 at 6:46 AM, R K wrote: > Gurus, > > I'm trying to write a fairly simple script that finds the number of hours / > minutes / seconds between now and the next Friday at 1:30AM. > > I have a few little chunks of code but I can't seem to get everything to > piece together nicely.

[Tutor] finding difference in time

2009-05-14 Thread R K
Gurus, I'm trying to write a fairly simple script that finds the number of hours / minutes / seconds between now and the next Friday at 1:30AM. I have a few little chunks of code but I can't seem to get everything to piece together nicely. import datetime,time now = datetime.datetime.now() i