Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a particular date, say 2011-07-02, how can I find the date of the next Monday (or any weekday day for that matter) after that date?

share|improve this question

3 Answers

up vote 10 down vote accepted
import datetime
def next_weekday(d, weekday):
    days_ahead = weekday - d.weekday()
    if days_ahead <= 0: # Target day already happened this week
        days_ahead += 7
    return d + datetime.timedelta(days_ahead)

d = datetime.date(2011, 7, 2)
next_monday = next_weekday(d, 0) # 0 = Monday, 1=Tuesday, 2=Wednesday...
print(next_monday)
share|improve this answer
Why 14 - d.weekday() instead of 7 - d.weekday()? – Adam Rosenfield Jul 2 '11 at 17:47
since weekday is always in range(7), no need for % 7 either. – utdemir Jul 2 '11 at 18:28
The code and values provided are correct if the reference date is a Saturday, as 2011/7/2 used in the example, but are wrong for other days of the week. For example, finding the next Tuesday from a Monday would yield 8 - 0 -> 8 days, where it should be 1 day. I recommend using dateutil.relativedelta as described at stackoverflow.com/a/8709459/1700746 – sebastien trottier Feb 12 at 21:39
@sebastientrottier You're totally right, that answer was bogus. Fixed. deteautil.relativedelta is not in the stdlib, so one would have to declare a dependency (with all the mainability and security problems that incurs) just for a very simple function. – phihag Apr 30 at 21:27

Try

>>> dt = datetime(2011, 7, 2)
>>> dt + timedelta(days=(7 - dt.weekday()))
datetime.datetime(2011, 7, 4, 0, 0)

using, that the next monday is 7 days after the a monday, 6 days after a tuesday, and so on, and also using, that Python's datetime type reports monday as 0, ..., sunday as 6.

share|improve this answer

You can start adding one day to date object and stop when it's monday.

>>> d = datetime.date(2011, 7, 2)
>>> while d.weekday() != 0: #0 for monday
...     d += datetime.timedelta(days=1)
... 
>>> d
datetime.date(2011, 7, 4)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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