标签:
使用的是python3.3.2
源代码如下:
>>> class A: ... def __eq__(self, other): ... return True ... >>> a = A() >>> b = A() >>> a ==b True >>> x = [1,2,b,3,4] >>> x.index(b) 0 >>> x.index(1) 0 >>> x.index(a) 0 >>> x.index(99) 2 >>>
谁能告诉我发生了什么???
标签:
原文地址:http://www.cnblogs.com/Blaxon/p/4670527.html