這篇“python __dict__的使用要注意什么”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python __dict__的使用要注意什么”文章吧。
成都創(chuàng)新互聯(lián)主營靖西網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),靖西h5成都小程序開發(fā)搭建,靖西網(wǎng)站營銷推廣歡迎靖西等地區(qū)企業(yè)咨詢
1、__dict__是屬性,不是方法。
2、若使用實(shí)例對(duì)象調(diào)用__dict__,則輸出由所有實(shí)例屬性組成的字典。
3、用類對(duì)象調(diào)用__dict__將輸出由所有實(shí)例方法、類屬性和類方法組成的字典。
實(shí)例
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() # 實(shí)例對(duì)象調(diào)用 print(blog.__dict__) # 類對(duì)象調(diào)用 print(PoloBlog.__dict__) # 輸出結(jié)果 {'name': '小菠蘿'} {'__module__': '__main__', 'sum': 0, '__init__':, 'test': , 'test_cls': , 'test_static': , '__dict__': , '__weakref__': , '__doc__': None}
以上就是關(guān)于“python __dict__的使用要注意什么”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。