如何获取格式化时间python
时间: 2023-10-10 07:06:31 浏览: 90
Python获取、格式化当前时间日期的方法
5星 · 资源好评率100%
在 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` 表示秒数。通过这些占位符可以组合出不同的时间格式。
阅读全文