Re: [Tutor] Future Appointments...

2010-01-31 Thread Ken G.
python.org [mailto:tutor-bounces+bermanrl=cfl.rr@python.org] On Behalf Of Ken G. Sent: Sunday, January 31, 2010 10:41 AM To: tutor@python.org Subject: [Tutor] Future Appointments... Below is a program to determine when my next appointment is. Line numbers are provided for reference only.

Re: [Tutor] Future Appointments...

2010-01-31 Thread Robert Berman
-Original Message- From: tutor-bounces+bermanrl=cfl.rr@python.org [mailto:tutor-bounces+bermanrl=cfl.rr@python.org] On Behalf Of Ken G. Sent: Sunday, January 31, 2010 10:41 AM To: tutor@python.org Subject: [Tutor] Future Appointments... Below is a program to determine when my

Re: [Tutor] Future Appointments...

2010-01-31 Thread Sander Sweers
On 31 January 2010 16:40, Ken G. wrote: > Below is a program to determine when my next appointment is.  Line numbers > are provided for reference only. > > 01  import time, datetime, sys > 02  from datetime import date > 03  today = date.today() > 04  print > 05  print "Today date is:", today > 06

[Tutor] Future Appointments...

2010-01-31 Thread Ken G.
Below is a program to determine when my next appointment is. Line numbers are provided for reference only. 01 import time, datetime, sys 02 from datetime import date 03 today = date.today() 04 print 05 print "Today date is:", today 06 todaystr = str(today) 07 print 08 print "Corrected d