Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Calculate age python

from datetime import date

def calculate_age(born):
    today = date.today()
    return today.year - born.year - ((today.month, today.day) < (born.month, born.day))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Calculate #age #python
ADD COMMENT
Topic
Name
2+2 =