当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python time asctime()用法及代码示例



描述

Pythom时间法asctime()将表示由 gmtime() 或 localtime() 返回的时间的元组或 struct_time 转换为以下形式的 24 个字符的字符串:'Tue Feb 17 23:21:05 2009'。

用法

以下是语法asctime()方法 -

time.asctime([t]))

参数

  • t- 这是一个由 9 个元素或 struct_time 组成的元组,表示 gmtime() 或 localtime() 函数返回的时间。

返回值

此方法返回以下形式的 24 个字符的字符串:'Tue Feb 17 23:21:05 2009'。

示例

下面的例子展示了 asctime() 方法的用法。

#!/usr/bin/python
import time

t = time.localtime()
print "time.asctime(t):%s " % time.asctime(t)

当我们运行上面的程序时,它会产生以下结果 -

time.asctime(t):Tue Feb 17 09:42:58 2009

相关用法


注:本文由纯净天空筛选整理自 Python time asctime() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。