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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
Try
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 |
|||
|
|
|
You can start adding one day to date object and stop when it's monday.
|
|||
|
|