If I am creating my own class in Python, what function should I define so as to allow the use of the in operator, e.g.
in
class MyClass(object): ... m = MyClass() if 54 in m: ...
MyClass.__contains__(self, item)
2.1m questions
2.1m answers
60 comments
57.0k users