Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3490854
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:34:00+00:00 2026-05-18T11:34:00+00:00

I have two datetime objects; a start date and an end date. I need

  • 0

I have two datetime objects; a start date and an end date. I need to enumerate the days, weeks and months between the two, inclusive.

Ideally the results would be in datetime form, though any compatible form is fine. Weeks and months are represented by a date corresponding to the first day of the week/month, where Monday is the first day of a week, as in ISO-8601. This means that the result may contain a date earlier than the start date.

For example, given 2010-11-28 to 2010-12-01, the results would be as follows:

days: 2010-11-28, 2010-11-29, 2010-11-30, 2010-12-01

weeks: 2010-11-22, 2010-11-29

months: 2010-11-01, 2010-12-01

I realize that the list of days is by itself straightforward, but I’d like a clean and consistent solution that uses a similar approach for all three. It seems like the calendar module should be useful, but I’m not seeing a good way to use it for this purpose.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T11:34:00+00:00Added an answer on May 18, 2026 at 11:34 am

    Using dateutil:

    import datetime
    import dateutil.rrule as drrule
    import dateutil.relativedelta as drel
    import pprint
    
    def dt2d(date):
        '''
        Convert a datetime.datetime to datetime.date object
        '''
        return datetime.date(date.year,date.month,date.day)
    
    def enumerate_dates(start,end):
        days=map(dt2d,drrule.rrule(drrule.DAILY, dtstart=start, until=end))
    
        # Find the Monday on or before start
        start_week=start+drel.relativedelta(weekday=drel.MO(-1))
        end_week=end+drel.relativedelta(weekday=drel.MO(-1))
        weeks=map(dt2d,drrule.rrule(drrule.WEEKLY, dtstart=start_week, until=end_week))
    
        # Find the first day of the month
        start_month=start.replace(day=1)
        end_month=end.replace(day=1)
        months=map(dt2d,drrule.rrule(drrule.MONTHLY, dtstart=start_month, until=end_month))
        return days,weeks,months
    
    
    if __name__=='__main__':
        days,weeks,months=enumerate_dates(datetime.date(2010,11,28),
                                          datetime.date(2010,12,01))
        print('''\
    days: {d}
    weeks: {w}
    months: {m}'''.format(d=map(str,days),w=map(str,weeks),m=map(str,months)))
    

    yields

    days: ['2010-11-28', '2010-11-29', '2010-11-30', '2010-12-01']
    weeks: ['2010-11-22', '2010-11-29']
    months: ['2010-11-01', '2010-12-01']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the need to be able to accurately find the months between two
I have two DateTime objects: StartDate and EndDate . I want to make sure
How can I compare if two DateTime objects have the same day,month and year?
I have a List<> of objects containing two strings and a DateTime. I want
I have two DateTime objects in C#, say birthDateTime and curDateTime. Now, I want
If I have a table that (among other columns) has two DATETIME columns, how
I have two arrays of System.Data.DataRow objects which I want to compare. The rows
I have two identical tables and need to copy rows from table to another.
Currently I have a function which can take the start time and end time
I have a two objects as follows: public class Item { public int ItemId

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.