用Python输入自己的出生年月日,按我的生日日期是1992年12月5日输出自己的出生信息
时间: 2023-04-09 17:01:23 浏览: 428
python根据出生日期获得年龄的方法
根据您提供的信息,您的出生日期是1992年12月5日。您可以使用Python编写程序来输出您的出生信息,例如:
```python
birth_year = 1992
birth_month = 12
birth_day = 5
print("我出生于{}年{}月{}日。".format(birth_year, birth_month, birth_day))
```
这将输出以下信息:
```
我出生于1992年12月5日。
```
阅读全文