Python模块学习 ---- time 日期时间处理

在应用程序的开发过程中,难免要跟日期、时间处理打交道。如:记录一个复杂算法的执行时间;网络通信中数据包的延迟等等。Python中提供了time, datetime calendar等模块来处理时间日期,今天对time模块中最常用的几个函数作一个介绍。

time.time

  time.time()函数返回从1970年1月1日以来的秒数,这是一个浮点数。

time.sleep

  可以通过调用time.sleep来挂起当前的进程。time.sleep接收一个浮点型参数,表示进程挂起的时间。

time.clock

  在windows操作系统上,time.clock() 返回第一次调用该方法到现在的秒数,其精确度高于1微秒。可以使用该函数来记录程序执行的时间。下面是一个简单的例子:

  1. import  time  
  2.   
  3. print  time.clock()  #1   
  4. time.sleep(2 )  
  5. print  time.clock()  #2   
  6. time.sleep(3 )  
  7. print  time.clock()  #3   
  8.   
  9. #---- result   
  10. #3.91111160776e-06   
  11. #1.99919151736   
  12. #4.99922364435   

time.gmtime

  该函数原型为:time.gmtime([sec]),可选的参数sec表示从1970-1-1以来的秒数。其默认值为 time.time(),函数返回time.struct_time类型的对象。(struct_time是在time模块中定义的表示时间的对象),下 面是一个简单的例子:

  1. import  time  
  2.   
  3. print  time.gmtime()   #获取当前时间的struct_time对象   
  4. print  time.gmtime(time.time() -  24  *  60  *  60 )   #获取昨天这个时间的struct_time对象   
  5.   
  6. #---- result   
  7. #time.struct_time(tm_year=2009, tm_mon=6, tm_mday=23, tm_hour=15, tm_min=16, tm_sec=3, tm_wday=1, tm_yday=174, tm_isdst=0)   
  8. #time.struct_time(tm_year=2009, tm_mon=6, tm_mday=22, tm_hour=15, tm_min=16, tm_sec=3, tm_wday=0, tm_yday=173, tm_isdst=0)   

time.localtime

  time.localtime与time.gmtime非常类似,也返回一个struct_time对象,可以把它看作是gmtime()的本地化版本。

time.mktime

  time.mktime执行与gmtime(), localtime()相反的操作,它接收struct_time对象作为参数,返回用秒数来表示时间的浮点数。例如:

  1. import  time  
  2.   
  3. #下面两个函数返回相同(或相近)的结果   
  4. print  time.mktime(time.localtime())  
  5. print  time.time()  

time.strftime

  time.strftime将日期转换为字符串表示,它的函数原型为:time.strftime(format[, t])。参数format是格式字符串(格式字符串的知识可以参考:time.strftime ),可选的参数t是一个struct_time对象。下面的例子将struct_time对象转换为字符串表示:

  1. import  time  
  2.   
  3. print  time.strftime( '%Y-%m-%d %H:%M:%S' , time.gmtime())  
  4. print  time.strftime( 'Weekday: %w; Day of the yesr: %j' )  
  5.   
  6. #---- result   
  7. #2009-06-23 15:30:53   
  8. #Weekday: 2; Day of the yesr: 174   

time.strptime

  按指定格式解析一个表示时间的字符串,返回struct_time对象。该函数原型为:time.strptime(string, format),两个参数都是字符串,下面是一个简单的例子,演示将一个字符串解析为一个struct_time对象:

  1. import  time  
  2.   
  3. print  time.strptime( '2009-06-23 15:30:53' '%Y-%m-%d %H:%M:%S' )  
  4.   
  5. #---- result   
  6. #time.struct_time(tm_year=2009, tm_mon=6, tm_mday=23, tm_hour=15, tm_min=30, tm_sec=53, tm_wday=1, tm_yday=174, tm_isdst=-1)   

  以上介绍的方法是time模块中最常用的几个方法,在Python手册中还介绍了其他的方法和属性,如:time.timezone, time.tzname ...感兴趣的朋友可以参考Python手册 time 模块

 

 

 

python常用的时间方法

 

我们先导入必须用到的一个module
>>> import time
设置一个时间的格式,下面会用到
>>>ISOTIMEFORMAT=’%Y-%m-%d %X’
看一下当前的时间,和其他很多语言相似这是从epoch(1970 年 1 月 1 日 00:00:00)开始到当前的秒数。
>>> time.time()
1180759620.859
上面的看不懂,换个格式来看看
>>> time.localtime()
(2007, 6, 2, 12, 47, 7, 5, 153, 0)
localtime返回tuple格式的时间,有一个和它类似的函数叫gmtime(),2个函数的差别是时区,gmtime()返回的是0时区的值,localtime返回的是当前时区的值。
>>> time.strftime( ISOTIMEFORMAT, time.localtime() )
’2007-06-02 12:54:29′
用上我们的时间格式定义了,使用strftime对时间做一个转换,如果取现在的时间,time.localtime() 可以不用。

>>> time.strftime( ISOTIMEFORMAT, time.localtime( time.time() ) )
’2007-06-02 12:54:31′
>>> time.strftime( ISOTIMEFORMAT, time.gmtime( time.time() ) )
’2007-06-02 04:55:02′
上面展示了gmtime和localtime的区别。
查看时区用
>>> time.timezone
-28800
上面的值是一个秒值,是当前时区和0时区相差的描述,-28800=-8*3600,即为东八区。

帖几个简单的函数

def ISOString2Time ( s ) :
    
'''
    convert a ISO format time to second
    from:2006-04-12 16:46:40 to:23123123
    把一个时间转化为秒
    
'''
    
return time . strptime ( s , ISOTIMEFORMAT )
def Time2ISOString ( s ) :
    
'''
    convert second to a ISO format time
    from: 23123123 to: 2006-04-12 16:46:40
    把给定的秒转化为定义的格式
    
'''
    
return time . strftime ( ISOTIMEFORMAT , time . localtime ( float ( s ) ) )
def dateplustime ( d , t ) :
    
'''
    d=2006-04-12 16:46:40
    t=2小时
   return  2006-04-12 18:46:40
   计算一个日期相差多少秒的日期,time2sec是另外一个函数,可以处理,3天,13分钟,10小时等字符串,回头再来写这个,需要结合正则表达式。
    
'''
    
return Time2ISOString ( time . mktime ( ISOString2Time ( d ) ) + time2sec ( t ) )
def dateMinDate ( d1 , d2 ) :
    
'''
    minus to iso format date,return seconds
    计算2个时间相差多少秒
    
'''
    
d1 = ISOString2Time ( d1 )
    
d2 = ISOString2Time ( d2 )
    
return time . mktime ( d1 ) - time . mktime ( d2 )

你可能感兴趣的:(python)