python 输出年月日时分秒
时间: 2023-06-29 16:06:46 浏览: 47
vue实现获取当前时间,输出为年月日时分秒
你可以使用 Python 中的 datetime 模块来输出当前的年月日时分秒。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:")
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:
```
当前时间为:
2021-06-24 16:25:10
```
阅读全文