time模块
time模块提供各种操作时间的函数
说明:一般有两种表示时间的方式:
第一种是时间戳的方式(相对于1970.1.1 00:00:00以秒计算的偏移量),时间戳是惟一的
第二种以数组的形式表示即(struct_time),共有九个元素,分别表示,同一个时间戳的struct_time会因为时区不同而不同
year (four digits, e.g. 1998)
month (1-12)
day (1-31)
hours (0-23)
minutes (0-59)
seconds (0-59)
weekday (0-6, Monday is 0)
Julian day (day in the year, 1-366)
DST (Daylight Savings Time) flag (-1, 0 or 1) 是否是夏令时
If the DST flag is 0, the time is given in the regular time zone;
if it is 1, the time is given in the DST time zone;
if it is -1, mktime() should guess based on the date and time.
夏令时介绍:http://baike.baidu.com/view/100246.htm
UTC介绍:http://wenda.tianya.cn/wenda/thread?tid=283921a9da7c5aef&clk=wttpcts
python获取当前时间
1.asctime()
asctime([tuple]) -> string
将一个struct_time(默认为当时时间),转换成字符串
Convert a time tuple to a string, e.g. ‘Sat Jun 06 16:26:11 1998‘.
When the time tuple is not present, current time as returned by localtime()
is used.
2.clock()
clock() -> floating point number
该函数有两个功能,
在第一次调用的时候,返回的是程序运行的实际时间;
以第二次之后的调用,返回的是自第一次调用后,到这次调用的时间间隔
示例:
利用time模块的格式化时间的方法来处理:
time.localtime(time.time())
用time.localtime()方法,作用是格式化时间戳为本地的时间。
输出的结果是:
time.struct_time(tm_year=2010, tm_mon=7, tm_mday=19, tm_hour=22, tm_min=33, tm_sec=39, tm_wday=0, tm_yday=200, tm_isdst=0)
现在看起来更有希望格式成我们想要的时间了。
7.mktime(...)
mktime(tuple) -> floating point number
将一个以struct_time转换为时间戳
8.time.strftime()方法
把一大串信息格式化成我们想要的东西
time.strftime(‘%Y-%m-%d‘,time.localtime(time.time()))
time.strftime的参数:
返回当前时间的时间戳
b = time.mktime(time.strptime(a,"%a %b %d %H:%M:%S %Y"))
关于pythont程序运行时间的编码实现python获取程序运行时间差
1......... print(("start_time %s" % datetime.datetime.now() )) # ctime()) #Accurate to microseconds func(*nkw) print(("end_time %s" % datetime.datetime.now() )) 2.........http://justcoding.iteye.com/blog/901758s = time.time() ... print(time.time() - s )
from:
原文地址:http://blog.csdn.net/pipisorry/article/details/45271423