python中格式化日期
时间: 2023-11-19 17:51:15 浏览: 83
Python格式化日期时间操作示例
在Python中,可以使用datetime模块来格式化日期。具体方法是使用strftime()函数,它可以将日期时间对象转换为字符串。例如,将当前日期格式化为年-月-日的形式可以这样写:
```python
from datetime import datetime
now = datetime.now()
formatted_date = now.strftime("%Y-%m-%d")
print(formatted_date)
```
输出结果为:2021-08-31
其中,"%Y"表示四位数的年份,"%m"表示两位数的月份,"%d"表示两位数的日期。
阅读全文