python程序能用很多方式处理日期和时间。转换日期格式是一个常见的例行琐事。python有一个time and calendar模组可以帮忙。
什么是tick?
时间间隔是以秒为单位的浮点小数。
每个时间戳都以自从1970年1月1日午夜(历元)经过了多长时间来表示。
python附带的受欢迎的time模块下有很多函数可以转换常见日期格式。如函数time.time()用ticks计时单位返回从12:00am, january 1, 1970(epoch) 开始的记录的当前操作系统时间, 如下实例:
#!/usr/bin/python
import time; # this is required to include time module.
ticks = time.time()
print “number of ticks since 12:00am, january 1, 1970:”, ticks
以上实例输出结果:
number of ticks since 12:00am, january 1, 1970: 7186862.73399
tick单位最适于做日期运算。但是1970年之前的日期就无法以此表示了。太遥远的日期也不行,unix和windows只支持到2038年某日。
什么是时间元组?
很多python函数用一个元组装起来的9组数字处理时间:
序号
字段
值
0 4位数年 2008
1 月 1 到 12
2 日 1到31
3 小时 0到23
4 分钟
5 秒 0到61 (60或61 是闰秒)
6 一周的第几日 0到6 (0是周一)
7 一年的第几日 1到366 (儒略历)
8 夏令时 -1, 0, 1, -1是决定是否为夏令时的旗帜
上述也就是struct_time元组。这种结构具有如下属性:
序号
属性
值
0 tm_year 2008
1 tm_mon 1 到 12
2 tm_mday 1 到 31
3 tm_hour 0 到 23
4 tm_min 0 到 59
5 tm_sec 0 到 61 (60或61 是闰秒)
6 tm_wday 0到6 (0是周一)
7 tm_yday 1 到 366(儒略历)
8 tm_isdst -1, 0, 1, -1是决定是否为夏令时的旗帜
获取当前时间
从返回浮点数的时间辍方式向时间元组转换,只要将浮点数传递给如localtime之类的函数。
#!/usr/bin/python
import time;
localtime = time.localtime(time.time())
print “local current time :”, localtime
以上实例输出结果:
local current time : time.struct_time(tm_year=2013, tm_mon=7,
tm_mday=17, tm_hour=21, tm_min=26, tm_sec=3, tm_wday=2, tm_yday=198, tm_isdst=0)
获取格式化的时间
你可以根据需求选取各种格式,但是最简单的获取可读的时间模式的函数是asctime():
#!/usr/bin/python
import time;
localtime = time.asctime( time.localtime(time.time()) )
print “local current time :”, localtime
以上实例输出结果:
local current time : tue jan 13 10:17:09 2009
获取某月日历
calendar模块有很广泛的方法用来处理年历和月历,例如打印某月的月历:
#!/usr/bin/python
import calendar
cal = calendar.month(2008, 1)
print “here is the calendar:”
print cal;
以上实例输出结果:
here is the calendar:
january 2008
mo tu we th fr sa su
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
time模块
time模块包含了以下内置函数,既有时间处理相的,也有转换时间格式的:
序号
函数及描述
1 time.altzone返回格林威治西部的夏令时地区的偏移秒数。如果该地区在格林威治东部会返回负值(如西欧,包括英国)。对夏令时启用地区才能使用。
2 time.asctime([tupletime])接受时间元组并返回一个可读的形式为”tue dec 11 18:07:14 2008″(2008年12月11日 周二18时07分14秒)的24个字符的字符串。
3 time.clock( )用以浮点数计算的秒数返回当前的cpu时间。用来衡量不同程序的耗时,比time.time()更有用。
4 time.ctime([secs])作用相当于asctime(localtime(secs)),未给参数相当于asctime()
5 time.gmtime([secs])接收时间辍(1970纪元后经过的浮点秒数)并返回格林威治天文时间下的时间元组t。注:t.tm_isdst始终为0
6 time.localtime([secs])接收时间辍(1970纪元后经过的浮点秒数)并返回当地时间下的时间元组t(t.tm_isdst可取0或1,取决于当地当时是不是夏令时)。
7 time.mktime(tupletime)接受时间元组并返回时间辍(1970纪元后经过的浮点秒数)。
8 time.sleep(secs)推迟调用线程的运行,secs指秒数。
9 time.strftime(fmt[,tupletime])接收以时间元组,并返回以可读字符串表示的当地时间,格式由fmt决定。
10 time.strptime(str,fmt=’%a %b %d %h:%m:%s %y’)根据fmt的格式把一个时间字符串解析为时间元组。
11 time.time( )返回当前时间的时间戳(1970纪元后经过的浮点秒数)。
12 time.tzset()根据环境变量tz重新初始化时间相关设置。
time模块包含了以下2个非常重要的属性:
序号
属性及描述
1 time.timezone属性time.timezone是当地时区(未启动夏令时)距离格林威治的偏移秒数(>0,美洲;