码迷,mamicode.com
首页 > 其他好文 > 详细

time模块

时间:2015-04-20 07:06:10      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:python   time   

#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

time模块

标签:python   time   

原文地址:http://ttxsgoto.blog.51cto.com/4943095/1635850

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!