#coding:utf-8 #time时间模块 import time print time.time() #时间戳 print time.ctime() #现在时间 print time.gmtime() #UTC时区时间 print time.localtime() #本地时区与UTC时区相差8小时 print time.ctime(1429448790.46) #将时间戳转化为可视时间 time1 = time.ctime(1429448790.46) p = time.strptime(time1) #将时间戳转化为时间格式的数据 print time.strftime(‘%Y-%m-%d %H:%I:%S‘,p) #将时间戳指定为定义的时间格式输出 for i in range(10): print "hello:%s" %i time.sleep(1) #休眠1s print time.time(),time.ctime(),time.clock()#系统调用程序执行时间
本文出自 “天天向上goto” 博客,请务必保留此出处http://ttxsgoto.blog.51cto.com/4943095/1635850
原文地址:http://ttxsgoto.blog.51cto.com/4943095/1635850