472,956 Members | 2,554 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,956 software developers and data experts.

Calculate an age

Hi all,

I have searched in the standard distribution if there was a function
to return the difference between 2 dates expressed like an age :
number of years, of months and days. The difference between datetime
instances returns a timedelta object that gives a number of days, but
not an age

So is there such a function somewhere ? If not, for what reason, since
it's a rather usual task

Regards,
Pierre
Dec 6 '07 #1
9 7867
On Dec 7, 8:34 am, Pierre Quentel <quentel.pie...@wanadoo.frwrote:
Hi all,

I have searched in the standard distribution if there was a function
to return the difference between 2 dates expressed like an age :
number of years, of months and days. The difference between datetime
instances returns a timedelta object that gives a number of days, but
not an age

So is there such a function somewhere ? If not, for what reason, since
it's a rather usual task
and a rather usually imprecisely specified task [what do you mean by
"number of months"?] with multiple interpretations/implementations/
doctrines the publication of any one of which attracts a truckload of
rotten tomatoes and derision from adherents of other sects :-)
Dec 6 '07 #2
On Dec 6, 4:19 pm, John Machin <sjmac...@lexicon.netwrote:
On Dec 7, 8:34 am, Pierre Quentel <quentel.pie...@wanadoo.frwrote:
Hi all,
I have searched in the standard distribution if there was a function
to return the difference between 2 dates expressed like an age :
number of years, of months and days. The difference between datetime
instances returns a timedelta object that gives a number of days, but
not an age
So is there such a function somewhere ? If not, for what reason, since
it's a rather usual task

and a rather usually imprecisely specified task [what do you mean by
"number of months"?] with multiple interpretations/implementations/
doctrines the publication of any one of which attracts a truckload of
rotten tomatoes and derision from adherents of other sects :-)
I think metric months are all the same length, 10**1.4834089785587095
days.

-- Paul
Dec 6 '07 #3
On Dec 6, 11:19 pm, John Machin <sjmac...@lexicon.netwrote:
On Dec 7, 8:34 am, Pierre Quentel <quentel.pie...@wanadoo.frwrote:
Hi all,
I have searched in the standard distribution if there was a function
to return the difference between 2 dates expressed like an age :
number of years, of months and days. The difference between datetime
instances returns a timedelta object that gives a number of days, but
not an age
So is there such a function somewhere ? If not, for what reason, since
it's a rather usual task

and a rather usually imprecisely specified task [what do you mean by
"number of months"?] with multiple interpretations/implementations/
doctrines the publication of any one of which attracts a truckload of
rotten tomatoes and derision from adherents of other sects :-)
It may be imprecisely specified, yet it's quite useful anyway. I've
got an implementation at http://blog.tkbe.org/archive/python-how-old-are-you/
if anyone's interested..

-- bjorn
Dec 7 '07 #4
On Dec 7, 7:09 pm, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
How many days in a year? 365.25 (J2000 epoch), 365.2422 [as I
recall](B1900 epoch), 365.0 (non-leap year), 366 (leap year)? Gregorian
or Julian calendar -- and depending upon one's country, the Gregorian
reform may take place at different years.

Simple months of (year/12) days, or calendrical mishmash (30 days
hath September, April, June, and November...) again with leap year
exceptions?
Hi,

I don't see where the ambiguity is. Isn't it obvious what we mean by
"I am X years, Y months and Z days" ?

Regards,
Pierre
Dec 8 '07 #5
On Fri, 07 Dec 2007 23:37:23 -0800, Pierre Quentel wrote:
On Dec 7, 7:09 pm, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
> How many days in a year? 365.25 (J2000 epoch), 365.2422 [as I
recall](B1900 epoch), 365.0 (non-leap year), 366 (leap year)? Gregorian
or Julian calendar -- and depending upon one's country, the Gregorian
reform may take place at different years.

Simple months of (year/12) days, or calendrical mishmash (30 days
hath September, April, June, and November...) again with leap year
exceptions?

I don't see where the ambiguity is. Isn't it obvious what we mean by
"I am X years, Y months and Z days" ?
That's obvious but given either the present date or the birth date along
with that information it's not so clear what the other date may be.
Unless you give the info about the used calender systems and the points in
time (according to which calender system!?) when to use which system.

If you are just asking those questions for people living now (and are
not called Connor McLeod ;-) and the gregorian calender it's easy but
providing functions in the standard library for arbitrary date calculation
involving years is not so easy.

Ciao,
Marc 'BlackJack' Rintsch
Dec 8 '07 #6
What is so obvious about dealing with months that vary in length and the
leap-year issue? Nothing. If you were born on a day that does not
exist every year (Feb 29th), how old are you on Feb 28th? or Mar 1 of
non-leap years? If you were born on Feb 29th, then you would be one
month old on March 29th, but would you be one year, one month and one
day old on March 29th of the next year? or would you merely be one year
and one month old? I believe this is exactly why datetime merely states
deltas in days, not months or years.
Marc 'BlackJack' Rintsch wrote:
On Fri, 07 Dec 2007 23:37:23 -0800, Pierre Quentel wrote:

>On Dec 7, 7:09 pm, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:

>> How many days in a year? 365.25 (J2000 epoch), 365.2422 [as I
recall](B1900 epoch), 365.0 (non-leap year), 366 (leap year)? Gregorian
or Julian calendar -- and depending upon one's country, the Gregorian
reform may take place at different years.

Simple months of (year/12) days, or calendrical mishmash (30 days
hath September, April, June, and November...) again with leap year
exceptions?

I don't see where the ambiguity is. Isn't it obvious what we mean by
"I am X years, Y months and Z days" ?

That's obvious but given either the present date or the birth date along
with that information it's not so clear what the other date may be.
Unless you give the info about the used calender systems and the pointsin
time (according to which calender system!?) when to use which system.

If you are just asking those questions for people living now (and are
not called Connor McLeod ;-) and the gregorian calender it's easy but
providing functions in the standard library for arbitrary date calculation
involving years is not so easy.

Ciao,
Marc 'BlackJack' Rintsch

--
Shane Geiger
IT Director
National Council on Economic Education
sg*****@ncee.net | 402-438-8958 | http://www.ncee.net

Leading the Campaign for Economic and Financial Literacy

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHWl4YyuP8LzpNs84RAtzmAJ4vDeb6AkiR04rkDy0iEf XuHixPrQCfYJw3
hlyZd7Z/6aiQprbbIPyB29M=
=5sXX
-----END PGP SIGNATURE-----

Dec 8 '07 #7
On Dec 8, 10:04 am, Shane Geiger <sgei...@ncee.netwrote:
What is so obvious about dealing with months that vary in length and the
leap-year issue? Nothing. If you were born on a day that does not
exist every year (Feb 29th), how old are you on Feb 28th?
X years, 11 months, 28 days

or Mar 1 of
non-leap years?
X' years, 0 month, 1 day

If you were born on Feb 29th, then you would be one
month old on March 29th, but would you be one year, one month and one
day old on March 29th of the next year? or would you merely be one year
and one month old?
1 year, 1 month, 0 day ; why would there be one day more ? People born
on the 28th would be one year, one month and one day old. If two dates
have the same day-in-the-month then the difference is X years, Y
months and 0 day

I understand that there is no possible conversion from a number of
days to a (X,Y,Z) tuple of (years,months,days), and the reverse. But
the difference between 2 dates can be unambiguously expressed as
(X,Y,Z), and given a start date and an interval (X,Y,Z) you can also
find the end date unambiguously, provided the arguments are valid (for
instance, 1 month after the 30th of January is not valid)

Regards,
Pierre
Dec 8 '07 #8
En Sat, 08 Dec 2007 14:37:13 -0300, Pierre Quentel
<qu************@wanadoo.frescribió:
I understand that there is no possible conversion from a number of
days to a (X,Y,Z) tuple of (years,months,days), and the reverse. But
the difference between 2 dates can be unambiguously expressed as
(X,Y,Z), and given a start date and an interval (X,Y,Z) you can also
find the end date unambiguously, provided the arguments are valid (for
instance, 1 month after the 30th of January is not valid)
As a side note, the "legal date reckoning" in Argentina considers that
case too: 1 month after the 30th of January is Feb 28 (or 29 on leap
years); 1 month after March 31 is April 30.

--
Gabriel Genellina

Dec 11 '07 #9
You might want to look at pyfdate: http://www.ferg.org/pyfdate

This Python program:
================================================== ============================
from pyfdate import *
birthday = Time(2000,2,29)

today = Time(2003,2,28)
years, months, period = today.diffym(birthday)
print "On", today.d
print "person is", years, "years", months,"months", period.shortest

today = Time(2003,3,1)
years, months, period = today.diffym(birthday)
print "On", today.d
print "person is", years, "years", months,"months", period.shortest
================================================== ============================

produces this output
================================================== ============================
On February 28, 2003
person is 3 years 0 months
On March 1, 2003
person is 3 years 0 months 1 day
================================================== ============================

Dec 18 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Phil Powell | last post by:
Relevancy scores are normally defined by a MySQL query on a table that has a fulltext index. The rules for relevancy scoring will exclude certain words due to their being too short (minimum...
1
by: Building Blocks | last post by:
Hi, All I need is a simle calculate form script which contains this: A script that can handle text input, radio buttons, checkboxes, and dropdowns. Each one of these variables will contain a...
2
by: Gálos Zsuzsa | last post by:
Hi all, I need to calculate Formulas. For example: dim strFormula as string="25*(12-6)" I ned a DotNet Function to calculate this Formula (25*(12-6)=150): dim dblValue as double = 150
1
by: Robert de Ridder | last post by:
I use an asp page to display pages, where the dynamic content is in an iframe. To calculate the height of the iframe I use the calcheight function. However when trying to do this with external...
4
by: Jan Szymczuk | last post by:
I'm creating an MS Access 2000 database where I have a number of people entered using simple basic fields, Surname: SMITH Forenames: John DoB: 09/09/1958 Age:...
3
by: Libber39 | last post by:
Hi everyone, Have a query on how to calculate the amount of weeks and days contained in a number in an access query. ie: the difference in days between 2 dates amounts to 17 days. I want to now...
0
by: SuzK | last post by:
I am trying to calculate in VBA in Access 2002 a moving average and update a table with the calculations. Fields in my WeeklyData table are Week Ending (date) ItemNbr (double) Sales Dollars...
6
by: rrstudio2 | last post by:
I am using the following vba code to calculate the median of a table in MS Access: Public Function MedianOfRst(RstName As String, fldName As String) As Double 'This function will calculate the...
1
by: mzovko20 | last post by:
Hello ! I´m having problem with this. I already created index.html document which allows user to input his/her date of birth. It looks like this : <html> <body> <center> <h3>How old are you...
5
by: Big P | last post by:
Hello, I would like to calculate cells in DataGridView ( VB Express) My datagridview1 looks something like this. --------------------------------------… ...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.