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

What's the shortest way to see how many full days have passed between two dates? Here's what I'm doing now.

math.floor((b - a).total_seconds()/float(86400))
share|improve this question
1  
It's just two dates, or do they also include time information? – Sven Marnach Nov 24 '11 at 14:16
Ah — see also stackoverflow.com/questions/151199/… – Paul D. Waite Nov 24 '11 at 14:20

3 Answers

up vote 21 down vote accepted

Assuming you’ve literally got two date objects, you can just subtract one from the other and query the resulting timedelta object for the number of days:

>>> from datetime import date
>>> a = date(2011,11,24)
>>> b = date(2011,11,17)
>>> a-b
datetime.timedelta(7)
>>> (a-b).days
7

And it works with datetimes too — I think it rounds down to the nearest day:

>>> from datetime import datetime
>>> a = datetime(2011,11,24,0,0,0)
>>> b = datetime(2011,11,17,23,59,59)
>>> a-b
datetime.timedelta(6, 1)
>>> (a-b).days
6
share|improve this answer
1  
Coolness. Somehow I always assumed "days" refers to just the day portion of the difference. So for example difference between 2010 and 2011 would be 0 days and 1 year, but turns out it does report 365 days as I wanted. – Bemmu Nov 25 '11 at 10:03
@Bemmu: ah yes — I think timedelta doesn’t report any unit longer than days (although I could be wrong). – Paul D. Waite Nov 25 '11 at 11:28

Do you mean full calendar days, or groups of 24 hours?

For simply 24 hours, assuming you're using Python's datetime, then the timedelta object already has a days property:

days = (a - b).days

For calendar days, you'll need to round a down to the nearest day, and b up to the nearest day, getting rid of the partial day on either side:

roundedA = a.replace(hour = 0, minute = 0, second = 0, microsecond = 0)
roundedB = b.replace(hour = 0, minute = 0, second = 0, microsecond = 0)
roundedB = roundedB + timedelta(days = 1)
days = (roundedA - roundedB).days
share|improve this answer

Try:

(b-a).days

I tried with b and a of type datetime.date.

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.