标签: python
为什么类方法本身相同,但不是本身?
>>> class Test: ... def test(self): pass ... >>> t = Test() >>> t.test == t.test True >>> t.test is t.test False