To keep things brief. Suppose I have a simple Car class with only a single attribute - model:
Wouldn't it be better the count method to be designed in a way that it calls the __eq__ function of the (incoming) int object rather than of those in the list?
class Car(object): def __init__(self, model): self.model = model def __eq__(self, other): return self.model==other.modelThen I create a Car object:
my_car = Car('Mercedes')Now suppose I create a simple list object:
my_list = [1, 3.14, 1, 0 , 0, 1, 'some_string', my_car]Now, I want to count the number of occurrences of 1. This should be 3. However I get the error:
Error:AttributeError: 'int' object has no attribute 'model
I understand what is going on. The count function behind the scenes makes use of __eq__ function of Car which I defined and since the int object does not have the model attribute, it issues an error. My question is, what is the point of having such an implementation of __eq__ function then? Seems like if any of the object in the list has the __eq__ method overriden, the count method of the list becomes useless.Wouldn't it be better the count method to be designed in a way that it calls the __eq__ function of the (incoming) int object rather than of those in the list?