用phyton写一个求出生年月的代码
时间: 2023-04-07 09:02:07 浏览: 121
根据出生日期判断星座的代码python
可以使用以下代码来求出生年月:
```python
import datetime
def calculate_age(birth_date):
today = datetime.date.today()
age = today.year - birth_date.year - ((today.month, today.day) < (birth_date.month, birth_date.day))
return age
birth_year = int(input("请输入出生年份:"))
birth_month = int(input("请输入出生月份:"))
birth_day = int(input("请输入出生日期:"))
birth_date = datetime.date(birth_year, birth_month, birth_day)
age = calculate_age(birth_date)
print("您的出生年月为:{}年{}月{}日".format(birth_year, birth_month, birth_day))
print("您现在的年龄为:{}岁".format(age))
```
这个代码可以让用户输入出生年月日,然后计算出用户的年龄,并输出出生年月和年龄。
阅读全文