多步比较测试python

时间:2017-07-14 15:40:17

标签: python if-statement comparison multi-step

我想实现一个类重载,并且如果一个具有给定时间点的事件(例如12:59:50)发生在另一个事件之前,那么输出是真或假,只是一个简单的比较测试。正如你所看到的那样,我实现了它,但是,我非常确定这不是最狡猾或更好的说法,反对导向的方法来执行任务。我是python的新手所以那里有什么改进吗?

谢谢

def __lt__(self, other):
    if self.hour  < other.hour:
       return True 

    elif (self.hour == other.hour) and (self.minute < other.minute):             
        return True

    elif (self.hour == other.hour) and (self.minute == other.minute) and (self.second < other.second):            
        return True

    else:            
        return False

1 个答案:

答案 0 :(得分:2)

元组(和其他序列)已经执行了您正在实施的字典比较类型:

def __lt__(self, other):
    return (self.hour, self.minute, self.second) < (other.hour, other.minute, other.second)

operator模块可以清理一下:

from operator import attrgetter

def __lt__(self, other):
    hms = attrgetter("hour", "minute", "second")
    return hms(self) < hms(other)