import time
while True:
a=“2019-07-24 17:04:00” # 冻结时间
b=time.time()# 当前时间
e=7606024
c=time.mktime(time.strptime(“2019-07-24 17:04:00”,"%Y-%m-%d %H:%M:%S"))
d=c+e-b
day = d//(606024) #天
hour =d//(6060)%24 #求小时
minute = d//60%60 # 分钟
seconds = d%60 # 秒
print("\r","%d天%d小时%d分%d秒"%(day,hour,minute,seconds),end="")
time.sleep(1)