Day of Year Behaviour

Robert Brewer fumanchu at amor.org
Thu Sep 30 19:16:17 EDT 2004


Hector Villafuerte wrote:
> I have 2 fields:
> YEAR
> DAY_OF_YEAR
> 
> and I need to get the complete date out of this, e.g.:
> YEAR=2004
> DAY_OF_YEAR=1
> -> DATE=2004/Jan/1
> 
> YEAR=2004
> DAY_OF_YEAR=33
> -> DATE=2004/Feb/2
> 
> I'm using the time module without success:
> >>> time.localtime(time.mktime((2004, 0, 0, 0, 0, 0, 0, 1, 0)))
> (2003, 11, 30, 0, 0, 0, 6, 334, 0)

One way to do it:

>>> import datetime
>>> YEAR = 2004
>>> DAY_OF_YEAR = 33
>>> d = datetime.date(YEAR, 1, 1) + datetime.timedelta(DAY_OF_YEAR - 1)
>>> d
datetime.date(2004, 2, 2)


Robert Brewer
MIS
Amor Ministries
fumanchu at amor.org



More information about the Python-list mailing list