Installed Python 2.4.2 on Windows XP. Activated IDLE. Loaded the following into the Edit window: --- # dates are easily constructed and formatted (Tutorial 10.8)
from datetime import date now = date.today() now now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.") # dates support calendar arithmetic birthday = date(1985, 12, 1) age = now - birthday age.days --- When I select Run Module in the Edit window, I got only two >>> after the RESTART line. I expected to see the output of several commands! Typing in age.days do produce the number of days. Why I do not get any output? Thanks for any guidance. -- http://mail.python.org/mailman/listinfo/python-list