📜  python根据出生日期计算年龄 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:37.254000             🧑  作者: Mango

代码示例4
#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))