python打印年月日时分秒
时间: 2023-07-12 16:46:47 浏览: 77
python日历打印
可以使用Python中的datetime库来打印当前的年月日时分秒,代码如下:
```python
from datetime import datetime
now = datetime.now()
print("当前时间为:", now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:当前时间为:2021-08-10 14:30:15。
阅读全文