datetime转换为字符串
时间: 2023-08-05 07:05:56 浏览: 95
Sql中将datetime转换成字符串的方法(CONVERT)
在Python中,可以使用strftime()方法将datetime对象转换为字符串。
示例代码如下:
```python
from datetime import datetime
# 获取当前时间
now = datetime.now()
# 将datetime对象转换为字符串
date_str = now.strftime('%Y-%m-%d %H:%M:%S')
print(date_str)
```
输出结果为当前时间的字符串表示,格式为“年-月-日 时:分:秒”。
阅读全文