python strftime( )函数使用
时间: 2023-06-05 17:47:50 浏览: 173
Python编程 3-1-1. Python中的strftime()方法支持的日期时间格式形式.rar
strftime() 函数用于格式化日期/时间,其中第一个参数为格式字符串,第二个参数为时间元组。
常用的格式字符有:
%Y: 四位数的年份
%m: 月份 (01-12)
%d: 日期 (01-31)
%H: 小时 (00-23)
%M: 分钟 (00-59)
%S: 秒 (00-59)
示例:
```python
import datetime
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出:当前年月日时分秒的格式如2022-05-20 15:25:50
```
阅读全文