Python time strftime()方法



描述

Python time strftime() 函数接收以时间元组,并返回以可读字符串表示的当地时间,格式由参数format决定。

语法

strftime()方法语法:

time.strftime(format[, t])

参数

返回值

返回以可读字符串表示的当地时间。

说明

python中时间日期格式化符号:

实例

以下实例展示了 strftime() 函数的使用方法:

#!/usr/bin/python
import time

t = (2009, 2, 17, 17, 3, 38, 1, 48, 0)
t = time.mktime(t)
print time.strftime("%b %d %Y %H:%M:%S", time.gmtime(t))

以上实例输出结果为:

Feb 18 2009 00:03:38