脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python根据出生日期获得年龄的方法

python根据出生日期获得年龄的方法

2020-05-26 10:22songguo Python

这篇文章主要介绍了python根据出生日期获得年龄的方法,涉及Python操作日期的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了python根据出生日期获得年龄的方法。分享给大家供大家参考。具体如下:

这段代码可以根据用户的出生日期获得其年龄,born参数为date类型

?
1
2
3
4
5
6
7
8
9
10
11
12
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程序设计有所帮助。

延伸 · 阅读

精彩推荐