>>> a = A() >>> a is A False >>> id(a) 3567120 >>> id(A) 2377856 >>> id(type(a)) 2377856 >>> type(a) is A True >>> a.__class__ is A True >>> isinstance(a, A) True
No comments:
Post a Comment