python 打印年月日时间
时间: 2023-09-02 18:15:39 浏览: 137
python 实现输出日期
可以使用 Python 的 datetime 模块来打印年月日时间,示例代码如下:
```python
import datetime
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
其中,now() 函数返回当前时间,strftime() 方法将时间格式化为指定的字符串。"%Y-%m-%d %H:%M:%S" 表示年月日时分秒,具体含义可以参考 Python 的官方文档。
阅读全文