当有人问你昨天是几号,是很容易就得到答案的
但当要计算出100天前是几号,就不那么容易得出了
而Python中datetime的timedelta则可以轻松完成计算
例如:
import datetime
(datetime.datetime.now() - datetime.timedelta(days = 100)).strftime("%Y-%m-%d")
附:
datetime模块定义了下面这几个类:
datetime.date:表示日期的类,
常用的属性有year, month, day;
datetime.time:表示时间的类,
常用的属性有hour, minute, second, microsecond;
datetime.datetime:表示日期时间,
datetime.timedelta:表示时间间隔,即两个时间点之间的长度
datetime.tzinfo:与时区有关的相关信息。
明天的日期:
-
import datetime
-
today = datetime.datetime.today()
-
tomorrowemp = today + datetime.timedelta(hours = 24)
-
#或者tomorrowemp = today + datetime.timedelta(days = 1)
-
tomorrow = tomorrowemp.replace(hour = 0,minute = 0,second = 0,microsecond = 0)
一个星期后的日期:
-
import datetime
-
today = datetime.datetime.today()
-
tomorrowemp = today + datetime.timedelta(hours = 24*7)
-
#或者tomorrowemp = today + datetime.timedelta(days = 7)
-
tomorrow = tomorrowemp.replace(hour = 0,minute = 0,second = 0,microsecond = 0)
利用timedelta的间隔时间对象可以方便的进行时间的加减,同时也能确定一些具体时间间隔的之后或之前的日期时间,同时不用考虑是否年份,月份更改
原文链接
阅读(6025) | 评论(0) | 转发(0) |