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
feedback
|
Assuming the first day of your week is Monday, use Update: Fixed week number. The | |||||
feedback
|
|
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:
| |||
|
feedback
|
|
Week 51 of 2008 started with Monday December 15:
Week 1 of 2009 started on December 29:
Found a web calendar that shows week numbers. And then there's always vecka.nu (Vecka means week in Swedish, nu means now.) | |||||||
|
feedback
|
|
This seems to work, assuming week one can have a Monday falling on a day in the last year.
| |||
|
feedback
|
|
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. | |||
|
feedback
|
| ||||
|
feedback
|
|
I have slightly modified the script of Vaidas K. in a way that it will return the beginning of the week and the end day of the week.
Soyou can use it that way.
| |||
|
feedback
|
|
Use the string formatting found in the time module. Detailed explanation of the formats used
The date returned is off by one week according to the calendar on my computer, maybe that is because weeks are indexed from 0? | |||
|
feedback
|