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.
You can get fancy by replacing the last 4 lines with this:
(see this answer for an explanation) As a test, you can't simply divide out the total number of days:
In fact, every 100 years it becomes off by an extra day. See Wikipedia for an explanation. |
|||||||||||
|
|
||||
|
|
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:
Upd: This solution really causes an exception when Feb, 29 comes into play. Here's correct check:
Upd2: Calling multiple calls to |
|||||||||
|
|
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:
Here's the output:
|
|||
|
|
|
|||
|
|
|
That can be done much simpler considering that int(True) is 1 and int(False) is 0:
|
|||
|
|
|
The simplest way is using
|
|||
|
|
As I did not see the correct implementation, I recoded mine this way...
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 :) |
|||
|
|
|
import datetime
In your case:
|
||||
|
|
datetimemodule is not enough, you can try: labix.org/python-dateutil – Tomasz Zielinski Feb 7 '10 at 17:46dateutil.relativedelta.relativedelta– Robert J. Nov 18 '12 at 15:02