将时间格式改为年月日时分秒 秒取两位数
时间: 2024-04-14 15:30:15 浏览: 120
时间戳转年月日时分秒
您可以使用以下代码将时间格式改为年月日时分秒,并确保秒数为两位数:
```python
import datetime
now = datetime.datetime.now()
formatted_time = now.strftime("%Y-%m-%d %H:%M:%S")
print(formatted_time)
```
这将输出当前时间的格式化字符串,例如:"2022-01-01 12:34:56"。
阅读全文