I need to check if some number of years have been since some date. Currently I've got timedelta from datetime module and I don't know how to convert it to years.
|
1
|
|
|
|
|
|
How exact do you need it to be? |
||
|
|
First off, at the most detailed level, the problem can't be solved exactly. Years vary in length, and there isn't a clear "right choice" for year length. That said, get the difference in whatever units are "natural" (probably seconds) and divide by the ratio between that and years. E.g.
...or whatever. Stay away from months, since they are even less well defined than years. |
||
|
|
|
If you're trying to check if someone is 18 years of age, using The correct way to do this is to calculate the age directly from the dates, by subtracting the two years, and then subtracting one if the current month/day precedes the birth month/day. |
||
|
|
|
|
Sorry guys, but non of your answer was useful. This is the answer:
Tough luck it can't be made in lambda (in non-obstruficated way). |
||||||||||
|
|
|
You need more than a Your best bet is to use the
If you'd rather stick with the standard library, the answer is a little more complex::
If it's 2/29, and 18 years ago there was no 2/29, this function will return 2/28. If you'd rather return 3/1, just change the last
Your question originally said you wanted to know how many years it's been since some date. Assuming you want an integer number of years, you can guess based on 365.25 days per year and then check using either of the
|
||
|
|
|
|
Even though this thread is already dead, might i suggest a working solution for this very same problem i was facing. Here it is (date is a string in the format dd-mm-yyyy):
|
|||
|
|
|
|
this function returns the difference in years between two dates (taken as strings in ISO format, but it can easily modified to take in any format)
|
|||
|
|
|
|
Well, question seems rather easy.
You need to check the number of 'full' years, and only if it's equal to 18 you need to bother with months and days. The edge case is:
It's still more than one-liner-lambda, but it's still pretty short, and seems quick in execution. |
||
|
|
|
|
|
||||
|
|
|
I'll suggest Pyfdate
the tutorial |
||
|
|
