內置方法進階 __eq__

__eq__ 當判斷兩個對象的值是否相等時,觸發此方法 class Staff: def __init__(self, name, sex): self.name = name self.sex = sex def __eq__(self, other): # 定義內置方法 return self.__dict__ == othe
相關文章
相關標籤/搜索