__class__
表示当前操作的对象的类是什么
# test.py
class Person:
def __init__(self):
self.name="laowang"
# main.py
from test import Person
obj=Person()
print(obj.__class__) # <class 'test.Person'>
表示当前操作的对象的类是什么
# test.py
class Person:
def __init__(self):
self.name="laowang"
# main.py
from test import Person
obj=Person()
print(obj.__class__) # <class 'test.Person'>
本文标题:Python魔法方法-__class__
本文链接:https://www.haomeiwen.com/subject/tmvafhtx.html
网友评论