概述
asctime()方法将一个元组或struct_time表示的时间返回gmtime()或localtime(),以下列格式的24个字符的字符串:“Tue Feb 17 23:21:05 2015”。
语法
以下是asctime()方法的语法:
time.asctime([t]))
参数
- t -- 这是9个元素或struct_time元组表示所返回gmtime的()或localtime()函数的时间。
返回值
此方法返回以下形式的24个字符的字符串:“Tue Feb 17 23:21:05 2015”。
例子
下面的例子显示了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 2014
最后
以上就是稳重大门为你收集整理的在Python操作时间和日期之asctime()方法的使用的全部内容,希望文章能够帮你解决在Python操作时间和日期之asctime()方法的使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复