您好,登錄后才能下訂單哦!
這篇文章主要介紹python中如何使用__dict__,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1、__dict__是屬性,不是方法。
2、若使用實例對象調用__dict__,則輸出由所有實例屬性組成的字典。
3、用類對象調用__dict__將輸出由所有實例方法、類屬性和類方法組成的字典。
實例
class PoloBlog: sum = 0 def __init__(self, name): self.name = name def test(self): pass @classmethod def test_cls(cls): pass @staticmethod def test_static(): pass blog = PoloBlog("小菠蘿") blog.test() # 實例對象調用 print(blog.__dict__) # 類對象調用 print(PoloBlog.__dict__) # 輸出結果 {'name': '小菠蘿'} {'__module__': '__main__', 'sum': 0, '__init__': <function PoloBlog.__init__ at 0x105d2b0d0>, 'test': <function PoloBlog.test at 0x105d4d310>, 'test_cls': <classmethod object at 0x105c47fa0>, 'test_static': <staticmethod object at 0x105c47d90>, '__dict__': <attribute '__dict__' of 'PoloBlog' objects>, '__weakref__': <attribute '__weakref__' of 'PoloBlog' objects>, '__doc__': None}
以上是“python中如何使用__dict__”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。