python 打印年月日时间
时间: 2023-09-02 12:15:39 浏览: 143
可以使用 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 的官方文档。
相关问题
python 打印年月日时间毫秒
现在的时间是2022年5月9日16时56分47秒372毫秒。你可以使用以下代码进行打印:
```python
import datetime
now = datetime.datetime.now()
print("现在的时间是{}".format(now.strftime("%Y年%m月%d日%H时%M分%S秒%f毫秒")))
```
注意,这里的%f是用于输出毫秒的占位符,但在Windows环境下可能不能正常工作,需要使用其他方法进行替代。
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。
阅读全文