10:30 AM
查看当前时间是否介于 say和之间的最佳方法是什么4:30 PM
?
我可以想到以下内容,不确定如何正确:
from datetime import datetime
nw = datetime.now()
hrs = nw.hour;mins = nw.minute;secs = nw.second;
zero = timedelta(seconds = secs+mins*60+hrs*3600)
st = nw - zero # this take me to 0 hours.
time1 = st + timedelta(seconds=10*3600+30*60) # this gives 10:30 AM
time2 = st + timedelta(seconds=16*3600+30*60) # this gives 4:30 PM
if nw>= time1 or nw <= time2:
print "yes, within the interval"
请让我知道这是否是正确的方法,可以写更好的东西吗?