datetime转字符获取yyyy-MM-dd格式数据
时间: 2024-06-16 13:08:19 浏览: 116
Sql中将datetime转换成字符串的方法(CONVERT)
要将datetime对象转换为指定格式的字符串,可以使用strftime()方法。下面将datetime对象转换为yyyy-MM-dd格式的示例代码:
```python
import datetime
#当前时间
now = datetime.datetime.now()
# 将datetime对象转换为指定格式的字符串
formatted_date = now.strftime("%Y-%m-%d")
print(formatted_date)
```
输出结果为当前日期的yyyy-MM-dd格式字符串。
阅读全文