Answers for "calculate age year,month ,day from date of birth python"

7

python calculate age from date of birth

from datetime import date

def calculate_age(born):
    today = date.today()
    return today.year - born.year - ((today.month, today.day) < (born.month, born.day))
Posted by: Guest on April-17-2021
0

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))
Posted by: Guest on October-06-2021

Code answers related to "calculate age year,month ,day from date of birth python"

Python Answers by Framework

Browse Popular Code Answers by Language