在python中,一个对象的内置属性__class__表示这个对象属于那种类,例如以下代码:
class testclassname:
def __init__(self):
self.a = 10
test = testclassname()
print test.__class__
输出结果为:
__main__.testclassname
其中__main__表示这个所在的module为__main__ module
在python中,一个对象的内置属性__class__表示这个对象属于那种类,例如以下代码:
class testclassname:
def __init__(self):
self.a = 10
test = testclassname()
print test.__class__
__main__.testclassname
其中__main__表示这个所在的module为__main__ module