几岁几个月计算器(是一个几个月示例)
您好!!!下面是一个简单容易的几岁几个月计算器的示例代码:。
```python。
from datetime import date。
def calculate_age(birth_date):。
today = date。today()。
age = today。year - birth_date。year。
if today。month < birth_date。month:。
age -= 一、
elif today。month == birth_date。month and today。day < birth_date。day:。
age -= 一、
return age。
def calculate_months(birth_date):。
today = date。today()。
months = (today。year - birth_date。year) * 12 + today。month - birth_date。month。
if today。day < birth_date。day:。
months -= 一、
return months。
# 测试样例。
birth_date = date(2000, 1, 15)。
age = calculate_age(birth_date)。
months = calculate_months(birth_date)。
print(f"年龄:{age}岁")。
print(f"月数:{months}个月")。
```。