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.
|
feedback
|
|
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
| |||||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||||||||
feedback
|
|
How exact do you need it to be? | |||||
feedback
|
|
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):
| ||||
|
feedback
|
|
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)
| ||||
|
feedback
|
| |||||||||||||
feedback
|
|
I'll suggest Pyfdate
the tutorial | |||
|
feedback
|
|
Yet another 3rd party lib not mentioned here is mxDateTime (predecessor of both python The aforementioned
First parameter is expected to be a To convert ordinary
or this for 1 microsecond precision:
And yes, adding the dependency for this single task in question would definitely be an overkill compared even with using timeutil (suggested by Rick Copeland). | |||
|
feedback
|
|
Get the number of days, then divide by 365.2425 (the mean Gregorian year) for years. Divide by 30.436875 (the mean Gregorian month) for months. | |||
|
feedback
|
|
In the end what you have is a maths issue. If every 4 years we have an extra day lets then dived the timedelta in days, not by 365 but 365*4 + 1, that would give you the amount of 4 years. Then divide it again by 4. timedelta / ((365*4) +1) / 4 = timedelta * 4 / (365*4 +1) | |||
|
feedback
|
|
This is the solution I worked out, I hope can help ;-)
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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). | |||||||||||
feedback
|