Python time.asctime() 方法

返回上一级

Python time.asctime() 函数接受时间元组并返回一个可读的形式为 "Tue Dec 11 18:07:14 2017"(2017年12月11日 周二18时07分14秒)的 24 个字符的字符串

导入模块

import time

语法

time.asctime([t])

参数

参数 说明
t 9 个元素的元组或者通过函数 gmtime()localtime() 返回的时间值

返回值

返回一个可读的形式为 "Tue Dec 11 18:07:14 2017"(2017年12月11日 周二18时07分14秒)的 24 个字符的字符串

范例

下面的代码使用 time.asctime() 将当前本地之间格式化为人类可读的字符串

#!/usr/bin/python
import time

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

运行以上 Python 代码,输出结果如下

$ python main.py 
time.asctime(t): Tue Jan 16 12:32:35 2018 

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.