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

How can I find an age in python from today's date and a persons birthdate? The birthdate is a from a DateField in a Django model.

share|improve this question
2  
When standard datetime module is not enough, you can try: labix.org/python-dateutil – Tomasz Zielinski Feb 7 '10 at 17:46
Have you considered accepting an answer? – John Machin Feb 11 '10 at 0:21
This has nearly certainly been resolved by: dateutil.relativedelta.relativedelta – Robert J. Nov 18 '12 at 15:02

9 Answers

up vote 40 down vote accepted
from datetime import date

def calculate_age(born):
    today = date.today()
    try: 
        birthday = born.replace(year=today.year)
    except ValueError: # raised when birth date is February 29 and the current year is not a leap year
        birthday = born.replace(year=today.year, day=born.day-1)
    if birthday > today:
        return today.year - born.year - 1
    else:
        return today.year - born.year

You can get fancy by replacing the last 4 lines with this:

return today.year - born.year - (birthday > today)

(see this answer for an explanation)


As a test, you can't simply divide out the total number of days:

from datetime import date, timedelta

def calculate_age1(born):
    today = date.today()
    try: 
        birthday = born.replace(year=today.year)
    except ValueError: # raised when birth date is February 29 and the current year is not a leap year
        birthday = born.replace(year=today.year, day=born.day-1)
    return today.year - born.year - (birthday > today)


def calculate_age2(birth_date):
    return int((date.today() - birth_date).days/365.25)

d = date(1,1,1)
end = date.today()
while d < end:
    if calculate_age1(d) != calculate_age2(d):
        print 'not the same for %s' % d
    d += timedelta(days=1)

calculate_age2 will fail for many dates in the past:

...
not the same for 1795-02-12
not the same for 1796-02-11
not the same for 1796-02-12
not the same for 1797-02-11
not the same for 1797-02-12
not the same for 1798-02-11
not the same for 1798-02-12
not the same for 1799-02-11
...
not the same for 1892-02-12
not the same for 1893-02-12
not the same for 1894-02-12
not the same for 1895-02-12
not the same for 1896-02-12
not the same for 1897-02-12
not the same for 1898-02-12
not the same for 1899-02-12
not the same for 1900-02-12

In fact, every 100 years it becomes off by an extra day. See Wikipedia for an explanation.

share|improve this answer
1  
Just as a matter of principle, your except block should catch only the one specific exception that could be raised. – Daenyth Jun 23 '10 at 13:29
1  
@Daenyth: Good call... I think it's a ValueError. Updated. – Mark Jun 23 '10 at 18:25
I even go so far as to test the message of the exception to make sure its what I am expecting. Even with the code above, there is a possibility that a ValueError is thrown, but its not the ValueError you are expecting. – Randy Syring Jul 12 '11 at 19:45
from datetime import date
days_in_year = 365.25

age = int((date.today() - birth_date).days/days_in_year)
share|improve this answer
This fails for certain dates, particularly ones close to today's date, but from 1900 and earlier, due to rounding errors. – Mark Feb 12 at 21:30

Unfortunately, you cannot just use timedelata as the largest unit it uses is day and leap years will render you calculations invalid. Therefore, let's find number of years then adjust by one if the last year isn't full:

from datetime import date
birth_date = date(1980, 5, 26)
years = date.today().year - birth_date.year
if (datetime.now() - birth_date.replace(year=datetime.now().year)).days >= 0:
    age = years
else:
    age = years - 1

Upd:

This solution really causes an exception when Feb, 29 comes into play. Here's correct check:

from datetime import date
birth_date = date(1980, 5, 26)
today = date.today()
years = today.year - birth_date.year
if all((x >= y) for x,y in zip(today.timetuple(), birth_date.timetuple()):
   age = years
else:
   age = years - 1

Upd2:

Calling multiple calls to now() a performance hit is ridiculous, it does not matter in all but extremely special cases. The real reason to use a variable is the risk of data incosistency.

share|improve this answer
Thank you, I found out this by doing some tests - and ended up a similar code found from AndiDog's link. – tkalve Feb 7 '10 at 17:50
2  
Strike 1: You're using datetime.datetime instead of datetime.date. Strike 2: Your code is ugly and inefficient. Calling datetime.now() THREE times?? Strike 3: Birthdate 29 Feb 2004 and today's date 28 Feb 2010 should return age 6, not die shrieking "ValueError: day is out of range for month". You're out! – John Machin Feb 7 '10 at 21:10
Sorry, your "Upd" code is even more baroque and broken than the first attempt -- nothing to do with 29 February; it fails in MANY simple cases like 2009-06-15 to 2010-07-02 ... the person is obviously a little over 1 year old but you deduct a year because the test on the days (2 >= 15) fails. And obviously you haven't tested it -- it contains a syntax error. – John Machin Feb 8 '10 at 3:46

The classic gotcha in this scenario is what to do with people born on the 29th day of February. Example: you need to be aged 18 to vote, drive a car, buy alcohol, etc ... if you are born on 2004-02-29, what is the first day that you are permitted to do such things: 2022-02-28, or 2022-03-01? AFAICT, mostly the first, but a few killjoys might say the latter.

Here's code that caters for the 0.068% (approx) of the population born on that day:

def age_in_years(from_date, to_date, leap_day_anniversary_Feb28=True):
    age = to_date.year - from_date.year
    try:
        anniversary = from_date.replace(year=to_date.year)
    except ValueError:
        assert from_date.day == 29 and from_date.month == 2
        if leap_day_anniversary_Feb28:
            anniversary = datetime.date(to_date.year, 2, 28)
        else:
            anniversary = datetime.date(to_date.year, 3, 1)
    if to_date < anniversary:
        age -= 1
    return age

if __name__ == "__main__":
    import datetime

    tests = """

    2004  2 28 2010  2 27  5 1
    2004  2 28 2010  2 28  6 1
    2004  2 28 2010  3  1  6 1

    2004  2 29 2010  2 27  5 1
    2004  2 29 2010  2 28  6 1
    2004  2 29 2010  3  1  6 1

    2004  2 29 2012  2 27  7 1
    2004  2 29 2012  2 28  7 1
    2004  2 29 2012  2 29  8 1
    2004  2 29 2012  3  1  8 1

    2004  2 28 2010  2 27  5 0
    2004  2 28 2010  2 28  6 0
    2004  2 28 2010  3  1  6 0

    2004  2 29 2010  2 27  5 0
    2004  2 29 2010  2 28  5 0
    2004  2 29 2010  3  1  6 0

    2004  2 29 2012  2 27  7 0
    2004  2 29 2012  2 28  7 0
    2004  2 29 2012  2 29  8 0
    2004  2 29 2012  3  1  8 0

    """

    for line in tests.splitlines():
        nums = [int(x) for x in line.split()]
        if not nums:
            print
            continue
        datea = datetime.date(*nums[0:3])
        dateb = datetime.date(*nums[3:6])
        expected, anniv = nums[6:8]
        age = age_in_years(datea, dateb, anniv)
        print datea, dateb, anniv, age, expected, age == expected

Here's the output:

2004-02-28 2010-02-27 1 5 5 True
2004-02-28 2010-02-28 1 6 6 True
2004-02-28 2010-03-01 1 6 6 True

2004-02-29 2010-02-27 1 5 5 True
2004-02-29 2010-02-28 1 6 6 True
2004-02-29 2010-03-01 1 6 6 True

2004-02-29 2012-02-27 1 7 7 True
2004-02-29 2012-02-28 1 7 7 True
2004-02-29 2012-02-29 1 8 8 True
2004-02-29 2012-03-01 1 8 8 True

2004-02-28 2010-02-27 0 5 5 True
2004-02-28 2010-02-28 0 6 6 True
2004-02-28 2010-03-01 0 6 6 True

2004-02-29 2010-02-27 0 5 5 True
2004-02-29 2010-02-28 0 5 5 True
2004-02-29 2010-03-01 0 6 6 True

2004-02-29 2012-02-27 0 7 7 True
2004-02-29 2012-02-28 0 7 7 True
2004-02-29 2012-02-29 0 8 8 True
2004-02-29 2012-03-01 0 8 8 True
share|improve this answer
from datetime import date
def age(birthday):
    today = date.today()
    y = today.year - birthday.year
    if today.month < birthday.month or today.month == birthday.month and today.day < birthday.day:
        y -= 1
    return y
share|improve this answer

That can be done much simpler considering that int(True) is 1 and int(False) is 0:

calculate_age(born):
    today = date.today()
    return today.year - born.year - int((today.month, today.day) < (born.month, born.day))
share|improve this answer

The simplest way is using python-dateutil

import datetime

import dateutil

def birthday(date):
    # Get the current date
    now = datetime.datetime.utcnow()
    now = now.date()

    # Get the difference between the current date and the birthday
    age = dateutil.relativedelta.relativedelta(now, date)
    age = age.years

    return age
share|improve this answer
This does not work correctly when the birthday is on Feb. 29 and today's date is Feb. 28 (it will act as if today is Feb. 29). – Trey Hunner Mar 10 at 3:22

As I did not see the correct implementation, I recoded mine this way...

    def age_in_years(from_date, to_date=datetime.date.today()):
  if (DEBUG):
    logger.debug("def age_in_years(from_date='%s', to_date='%s')" % (from_date, to_date))

  if (from_date>to_date): # swap when the lower bound is not the lower bound
    logger.debug('Swapping dates ...')
    tmp = from_date
    from_date = to_date
    to_date = tmp

  age_delta = to_date.year - from_date.year
  month_delta = to_date.month - from_date.month
  day_delta = to_date.day - from_date.day

  if (DEBUG):
    logger.debug("Delta's are : %i  / %i / %i " % (age_delta, month_delta, day_delta))

  if (month_delta>0  or (month_delta==0 and day_delta>=0)): 
    return age_delta 

  return (age_delta-1)

Assumption of being "18" on the 28th of Feb when born on the 29th is just wrong. Swapping the bounds can be left out ... it is just a personal convenience for my code :)

share|improve this answer

import datetime

def age(date_of_birth):
    if date_of_birth > datetime.date.today().replace(year = date_of_birth.year):
        return datetime.date.today().year - date_of_birth.year - 1
    else:
        return datetime.date.today().year - date_of_birth.year

In your case:

import datetime

# your model
def age(self):
    if self.birthdate > datetime.date.today().replace(year = self.birthdate.year):
        return datetime.date.today().year - self.birthdate.year - 1
    else:
        return datetime.date.today().year - self.birthdate.year
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.