The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.
|
 |
|
Dev Shed Forums
> Programming Languages
> Python Programming
|
Trying to create an age calculator...
Discuss Trying to create an age calculator... in the Python Programming forum on Dev Shed. Trying to create an age calculator... Python Programming forum discussing coding techniques, tips and tricks, and Zope related information. Python was designed from the ground up to be a completely object-oriented programming language.
|
|
 |
|
|
|
|

Dev Shed Forums Sponsor:
|
|
|

February 22nd, 2004, 07:23 PM
|
|
Registered User
|
|
Join Date: Feb 2004
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Trying to create an age calculator...
I have a couple problems with this program.
I am using a tuple that contains all of the months and want to be able to get the user to re-enter the data if they enter in invalid month, day or year ? Here is the code I have so far:
months = ("january", "february", "march", "april", "may", "june", "july",
"august", "september", "october", "november", "december")
while True:
bmonth = raw_input("Please enter your Birth Month: ")
bmonth = bmonth.lower()
for mymonth in months:
if mymonth == bmonth:
print "you have entered a valid month"
else:
print "you need to print a valid month"
raw_input("\n\nPress the enter key to exit.")
Also I cant seem to get a formula to work with integers that will calculate the person's age any help I can get would be appreciated 
|

February 22nd, 2004, 09:07 PM
|
 |
onCsdfeu
|
|
Join Date: Jul 2003
Location: Canada
Posts: 100
Time spent in forums: 2 h 16 m 21 sec
Reputation Power: 10
|
|
Those lines
Code:
for mymonth in months:
if mymonth == bmonth:
could be replaced by
Code:
if mymonth in bmonth:
But as for calculating a person's age, do you need just the number of years ? Or do you also want months, days ?
__________________
Time is the greatest of teachers ; sadly, it kills all of its students.
- Hector Berlioz
|

February 22nd, 2004, 10:49 PM
|
|
Registered User
|
|
Join Date: Feb 2004
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by SolarBear Those lines
Code:
for mymonth in months:
if mymonth == bmonth:
could be replaced by
Code:
if mymonth in bmonth:
But as for calculating a person's age, do you need just the number of years ? Or do you also want months, days ? |
I want to calculate age in years using users birth month, day and year compared to current month, day and year.
thank you for the help on the first part....
|

February 22nd, 2004, 11:23 PM
|
 |
Contributing User
|
|
Join Date: Jan 2004
Posts: 103
Time spent in forums: 3 Days 1 h 17 m 20 sec
Reputation Power: 10
|
|
Quote: | Originally Posted by jfucile I want to calculate age in years using users birth month, day and year compared to current month, day and year. |
this isnt the most efficant way,but its something to give ya an idea:
Code:
import time
date=time.ctime()
cmonth=date[4:7] #current month
cday=int(date[8:10]) #current day
cyear=int(date[20:24]) #current year
month=raw_input('month?')
day=int(raw_input('day?'))
year=int(raw_input('year?'))
if month == 'January':
month=int('01')
elif month == 'Febuary':
month=int('02')
elif month == 'March':
month=int('03')
#etc etc etc
if cmonth == 'Jan':
cmonth=int('01')
elif cmonth == 'Feb':
cmonth=int('02')
elif cmonth == 'Mar':
cmonth=int('03')
#etc etc etc
age = cyear-year
if month > cmonth:
print age-1
elif month < cmonth:
print age
else:
if day < cday:
print age
elif day > cday:
print age-1
else:
print 'Happy Birthday!'
print age
__________________
It is not important if the glass is half full or half empty.What is important,is who has been drinking from MY glass?!?!?
Last edited by Boceifus : February 23rd, 2004 at 07:34 AM.
Reason: edited values for cmonth(only reads 3 chars),shortened
|

February 23rd, 2004, 07:24 AM
|
 |
Hello World :)
|
|
Join Date: Mar 2003
Location: Hull, UK
|
|
Not a problem at all, the time module provides everything we need and the math is very easy so here goes  .
Code:
#!/usr/bin/env python
import time
while True:
print 'Please enter dates in the following format - DD/MM/YYYY\n'
birth = raw_input('Date of Birth: ')
try:
born = time.strptime(birth, '%d/%m/%Y')[:3]
date = time.localtime()[:3]
print int(float('%d.%d%d' % (date)) - float('%d.%d%d' % (born))), '\n'
except:
print 'An error occured while processing your entry...\n'
I wasn't really sure how acurate you wanted this (to the day) but the program will return an int of the users age in years acurate up the the their birthday i.e. 18.
You can change the input format to anything you want, see the time module for more info on that:
http://www.python.org/doc/2.3.3/lib/module-time.html
Note: this is untested so if it doesn't work let me know, although i see no reason why it shouldn't  .
Mark.
__________________
programming language development: www.netytan.com – Hula
|

February 23rd, 2004, 07:49 PM
|
 |
Hello World :)
|
|
Join Date: Mar 2003
Location: Hull, UK
|
|
Chief brought it to my attention that my script brakes when the day and or month is a two digit int i.e 10, 11, 12.
Luckily this can easily be fixed by padding each number using string formatting  .
Code:
#!/usr/bin/env python
import time
while True:
print 'Please enter dates in the following format - DD/MM/YYYY\n'
birth = raw_input('Date of Birth: ')
try:
born = time.strptime(birth, '%d/%m/%Y')[:3]
date = time.localtime()[:3]
print int(float('%04d.%02d%02d' % (date)) - float('%04d.%02d%02d' % (born))), '\n'
except:
print 'An error occured while processing your entry...\n'
Thanks again Chief,
Mark.
|

February 24th, 2004, 10:44 AM
|
|
Registered User
|
|
Join Date: Feb 2004
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
I attempted to run the code that was supplied but it keeps erroring out.
I gues it may have to do with me runing this on a windows box, I may have to have the user enter in all the variables manually and then change them to an integer after combining them.
Any suggestions ? 
|

February 24th, 2004, 01:09 PM
|
 |
Hello World :)
|
|
Join Date: Mar 2003
Location: Hull, UK
|
|
|
Mmmm no, there shouldn't be a problem with either since Chief and i both have windows boxes and we've both been messing around with it without any problems. Whats the error?
Note: if you're not using Python 2.3 then you'll need to change 'True' to '1'.
Mark.
|
Developer Shed Advertisers and Affiliates
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate This Thread |
Linear Mode
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|