Re: How Compute # of Days between Two Dates?
tetime is pretty new standard library module. I'm quite sure that it wasn't around when the latest edition of Learning Python was written. -- Ari Makela late autumn - [EMAIL PROTECTED] a single chair
Re: Printing list of dates starting today
.time() >>> for i in (0, 1, 2, 3): ... t = time.gmtime(time.time() + i * DAY) ... print time.strftime('%d.%m.%Y, %a', t) ... 01.09.2008, Mon 02.09.2008, Tue 03.09.2008, Wed 04.09.2008, Thu -- Ari Makela late autumn - [EMAIL PR