how to predict age from birth year in python code example
Example: 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))