python计算纪念日相关
注意需要python3
1、距离某一特定日期多少天后,如 100天
from datetime import datetime,timedelta
pre=datetime(2016,12,12,22,30,50,55) # 年月日时分秒 微秒
dst=pre+timedelta(days=100)#timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]])
print(dst)
2、现在距离某一天多久了
from datetime import datetime,timedelta pre=datetime(2016,12,12,22,30,50,55) # 年月日时分秒 微秒 now=datetime.now() dst=now-pre print(dst)
3、两个时间差
from datetime import datetime,timedelta pre=datetime(2016,12,12,22,30,50,55) # 年月日时分秒 微秒 pre2=datetime(2016,12,13,22,30,50,55) # 年月日时分秒 微秒 dst=pre2-pre print(dst)
踩坑之路多回顾,不要在一个坑掉两次!
THINK TWICE,CODE ONCE!