Python中输入年月日
时间: 2023-11-19 09:56:49 浏览: 136
python年月日
Python中可以使用input()函数获取用户输入的年月日,然后可以使用datetime模块中的date类来表示日期。具体实现方法如下所示:
```python
from datetime import date
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
day = int(input("请输入日期:"))
d = date(year, month, day)
print("您输入的日期是:", d)
```
在上述代码中,我们首先使用input()函数获取用户输入的年月日,然后使用date类来表示日期,并将其打印输出。需要注意的是,由于input()函数返回的是字符串类型,因此需要使用int()函数将其转换为整数类型。
阅读全文