vote up 7 vote down star
1

If I have a certain week number (eg 51) and a given year (eg 2008), how do I find the date of the first Monday of that same week?

Many thanks

flag

2  
The "first Monday" in a week? How many Mondays are there in a week? – Federico Ramponi Dec 29 '08 at 0:47
Some weeks have two mondays after each other, at least it feels that way. – Lasse V. Karlsen Dec 29 '08 at 0:48

7 Answers

vote up 6 vote down check

Week 51 of 2008 started with Monday December 15:

>>> d = date(2008, 1, 1)
>>> d + timedelta(days=-d.weekday(), weeks=50)
datetime.date(2008, 12, 15)

Week 1 of 2009 started today:

>>> d = date(2009, 1, 1)
>>> d + timedelta(days=-d.weekday(), weeks=0)
datetime.date(2008, 12, 29)

Found a web calendar that shows week numbers. And then there's always vecka.nu (Vecka means week in Swedish, nu means now.)

link|flag
Elegant solution. Thanks. – Rui Vieira Dec 29 '08 at 1:36
vote up 0 vote down

PEZ's and Gerald Kaszuba's solutions work under assumption that January 1st will always be in the first week of a given year. This assumption is not correct for ISO calendar, see Python's docs for reference. For example, in ISO calendar, week 1 of 2010 actually starts on Jan 4, and Jan 1 of 2010 is in week 53 of 2009. An ISO calendar-compatible solution:

from datetime import date, timedelta

def week_start_date(year, week):
    d = date(year, 1, 1)    
    delta_days = d.isoweekday() - 1
    delta_weeks = week
    if year == d.isocalendar()[0]:
        delta_weeks -= 1
    delta = timedelta(days=-delta_days, weeks=delta_weeks)
    return d + delta
link|flag
vote up 1 vote down

Anybody interested in these sorts of questions should check out the smash-hit bestseller Calendrical Calculations by Reingold and Dershowitz. Before there were books there was a journal paper, which is the most requested reprint in the history of Software---Practice & Experience.

link|flag
vote up 0 vote down

Use the string formatting found in the time module. Detailed explanation of the formats used

>>> import time
>>> time.strptime("51 08 1","%U %y %w")
(2008, 12, 22, 0, 0, 0, 0, 357, -1)

The date returned is off by one week according to the calendar on my computer, maybe that is because weeks are indexed from 0?

link|flag
vote up 4 vote down

This seems to work, assuming week one can have a Monday falling on a day in the last year.

from datetime import date, timedelta

def get_first_dow(year, week):
    d = date(year, 1, 1)
    d = d - timedelta(d.weekday())
    dlt = timedelta(days = (week - 1) * 7)
    return d + dlt
link|flag
vote up 9 vote down
>>> import time
>>> time.asctime(time.strptime('2008 50 1', '%Y %W %w'))
'Mon Dec 15 00:00:00 2008'

Assuming the first day of your week is Monday, use %U instead of %W if the first day of your week is Sunday. See the documentation for strptime for details.

Update: Fixed week number. The %W directive is 0-based so week 51 would be entered as 50, not 51.

link|flag
Oooh, magic, I like it! – Lasse V. Karlsen Dec 29 '08 at 1:07
vote up -6 vote down

Look at the documentation here

The rest is up to you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.