python将datetime.datetime对象转换为字符串
时间: 2023-05-17 21:07:34 浏览: 118
时间字符串转换成日期对象datetime的方法
可以使用strftime()方法将datetime.datetime对象转换为字符串,例如:
```
import datetime
now = datetime.datetime.now()
str_now = now.strftime("%Y-%m-%d %H:%M:%S")
print(str_now)
```
输出结果为当前时间的字符串表示,例如:"2021-08-25 16:30:00"。
阅读全文