使用Printer类实现输出当前的年月日时分秒。
时间: 2024-03-27 07:35:59 浏览: 85
Java输出系统当前的日期(年月日时分秒毫秒)
好的,以下是使用Printer类实现输出当前的年月日时分秒的Python代码:
```python
import datetime
class Printer:
def print_time(self):
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"))
printer = Printer()
printer.print_time()
```
运行上述代码,它将输出当前的年月日时分秒,如下所示:
```
2021-11-22 10:45:30
```
注意,这里使用了Python内置的datetime模块来获取当前时间,并使用strftime方法将其格式化为指定的字符串形式。同时,使用了类和对象的概念,将打印时间的功能封装在Printer类中。
阅读全文