python打印当前时间,格式为年月日时分秒
时间: 2024-05-04 08:15:29 浏览: 124
使用python编程打印当前时间
可以使用 Python 自带的 datetime 模块来打印当前时间,代码如下:
```python
import datetime
now = datetime.datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("当前时间为:", current_time)
```
输出:
```
当前时间为: 2021-04-21 11:38:30
```
希望你满意!
阅读全文