python datetime转字符串
时间: 2023-08-30 15:10:08 浏览: 235
Python如何将字符串转换为日期
可以使用strftime()函数将datetime类型转换为字符串格式。例如:
```python
import datetime
now = datetime.datetime.now()
str_now = now.strftime("%Y-%m-%d %H:%M:%S")
print(str_now)
```
输出:2021-12-13 11:32:45
阅读全文