def op(y,m,d,jr):
day = []
t1 = datetime.datetime.now()#获取当前时间
t2 = datetime.datetime(int(y),int(m),int(d))#获取指定时间
t3 = t2 - t1
#把时间类型转成字符串再分割
t3 = str(t3).split(‘,‘)
for i in t3:
day.append(i)
#取出还有多少天数
d = day[0]
if d == "-1 day":
print("过节了")
if ‘days‘ not in day[0]:
print("明天过节")
elif d > ‘1 days‘:
print("距离节日还有%s"%d)
else:
print("期待明年吧!")
用法:
ggj = op(“2020″,”11″,”11″,”光棍节”)
pay = op(“2020″,”12″,”24″,”平安夜”)
yd = op(“2021″,”1″,”1″,”元旦”)
cj = op(“2021″,”2″,”11″,”除夕”)
效果如下:
光棍节: 期待明年吧!
平安夜: 距平安夜还有16 days
元 旦: 距2021年元旦还有24 days
春 节: 距2021年春节还有65 days
更多相关知识请移步到https://www.wangshuying.cn
原文:https://blog.51cto.com/461884/2560854