Python 3 - 时间 asctime() 方法

  • 描述

    方法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/python3
    import time
    t = time.localtime()
    print ("asctime : ",time.asctime(t))
    
  • 结果

    当我们运行上面的程序时,它会产生以下结果 -
    
    asctime :  Mon Feb 15 09:46:24 2016