赞
踩
timedalte 是datetime中的一个对象,该对象表示两个时间的差值
构造函数: datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)下面应该是常识,几乎每个人都知道:
1 week = 7 days
在构造函数中,参数值的范围如下:
timedalte 有三个只读属性:
timedelta.resolution:两个时间的最小差值 相当于 timedelta(microseconds=1)。
三个只读属性实例:
- from datetime import date,timedelta
- print(timedelta.max);#999999999 days, 23:59:59.999999
- print(timedelta(days=999999999, hours=23, minutes=59, seconds=59, microseconds=999999));#999999999 days, 23:59:59.999999
-
- print(timedelta.min);#-999999999 days, 0:00:00
- print(timedelta(-999999999));#-999999999 days, 0:00:00
-
- print(timedelta.resolution);#0:00:00.000001
- print(timedelta(microseconds=1));#0:00:00.000001
timedelta.total_seconds()方法:返回该时间差 以秒为单位的值
综上的实例:
- from datetime import datetime,date,timedelta
- now = datetime.now();
- nextDay = now + timedelta(days = 1);#增加一天后的时间
- nextSecond = now + timedelta(seconds = 1);#增加一秒后的时间
- span = now - nextDay;#获取时间差对象
- print(now);
- print(nextDay);
- print(nextSecond);
- print(span.total_seconds());#获取时间差 以秒为单位
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。