strftime
时间: 2023-07-13 12:14:55 浏览: 147
php strftime函数的详细用法
`strftime` 是Python中的一个时间/date格式化函数,它可以将时间/date转换为指定格式的字符串。它的用法如下:
```python
import datetime
now = datetime.datetime.now()
# 使用strftime将时间格式化为字符串
formatted_time = now.strftime("%Y-%m-%d %H:%M:%S")
print(formatted_time)
```
输出结果是当前时间的字符串形式,格式为`年-月-日 时:分:秒`。在格式化字符串中,`%Y`表示年份,`%m`表示月份,`%d`表示日期,`%H`表示小时,`%M`表示分钟,`%S`表示秒。
阅读全文