Tag: in operator

覆盖Python的“in”运算符?

如果我在Python中创build我自己的类,我应该定义什么函数以允许使用“in”运算符,例如 class MyClass(object): … m = MyClass() if 54 in m: …