I need to get date objects for the first any last day in the current year.
Currently I'm using this code which works fine, but I'm curious if there's a nicer way to do it; e.g. without having to specify the month/day manually.
from datetime import date
a = date(date.today().year, 1, 1)
b = date(date.today().year, 12, 31)
calendar.monthrange(year,month)gives the first/last day of the month. However, I don't see how that would help your code. – NPE Mar 24 '11 at 10:55