为了账号安全,请及时绑定邮箱和手机立即绑定

查找24小时之间是否经过了日期-Python

查找24小时之间是否经过了日期-Python

慕田峪9158850 2019-06-14 16:00:34
查找24小时之间是否经过了日期-Python我有以下方法:# last_updated is a datetime() object, representing the last time this program randef time_diff(last_updated):   day_period = last_updated.replace(day=last_updated.day+1, hour=1,                                      minute=0, second=0,                                      microsecond=0)    delta_time = day_period - last_updated    hours = delta_time.seconds // 3600    # make sure a period of 24hrs have passed before shuffling    if hours >= 24:       print "hello"    else:       print "do nothing"我想知道从那以后24小时是否已经过去了last_updated,我怎么能在Python?
查看完整描述

2 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

只是为了澄清我们的一些事情,因为我不认为我们都会利用timePython库当你使用datetime,这在Django中尤其常见,如果您这样做比较的话:

if (now - then) > DAY:

它将是巨大的失败..这是因为你无法比较datetime.timedeltaint.

解决方案是将对象转换为秒。
例如:

from datetime import datetime

then = datetime_object
now = datetime.now()if (now - then).total_seconds() > NUMBER_OF_SECONDS:
    # do something

希望我能帮助那些在这方面遇到问题的人。
干杯


查看完整回答
反对 回复 2019-06-14
  • 2 回答
  • 0 关注
  • 346 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信