定义一个满足如下要求的Date类 用下列的数据输出数据 年-月-日 输入格式: 年 月 日 例如 1978 5 2 2020 12 12 输出格式: 1978-05-02 2020-12-12
时间: 2023-05-27 13:05:39 浏览: 162
年、月、日三级联动下拉菜单
```python
class Date:
def __init__(self, year, month, day):
self.year = year
self.month = month
self.day = day
def __str__(self):
return "{:04d}-{:02d}-{:02d}".format(self.year, self.month, self.day)
date1 = Date(1978, 5, 2)
date2 = Date(2020, 12, 12)
print(date1) # 1978-05-02
print(date2) # 2020-12-12
```
阅读全文