时间间隔是浮点数,以秒为单位。时间的特定时刻以自1970年1月1日上午12:00(纪元)以来的秒数表示。
Python提供了一个流行的时间模块,该模块提供了处理时间以及在表示之间转换的功能。函数time.time()以毫秒为单位返回自1970年1月1日(纪元)上午12:00开始的当前系统时间。
#!/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
日期运算很容易用滴答作响。但是,纪元之前的日期不能以这种形式表示。遥远的将来的日期也无法用这种方式表示-对于UNIX和Windows,截止日期是2038年的某个时候。