这段代码可以根据用户的出生日期获得其年龄,born参数为date类型
def calculate_age(born): today = date.today() try: birthday = born.replace(year=today.year) except ValueError: # raised when birth date is February 29 # and the current year is not a leap year birthday = born.replace(year=today.year, day=born.day-1) if birthday > today: return today.year - born.year - 1 else: return today.year - born.year
希望本文所述对大家的Python程序设计有所帮助。
查看更多关于python根据出生日期获得年龄的方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did88260