您好,登錄后才能下訂單哦!
這篇“python __dict__的使用要注意什么”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。