导语:
本文主要介绍了关于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}
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何将元素插入到python中的列表中10/16
- ♥ 如何包装python代码09/25
- ♥ 如何用代码保证python3中的枚举值?11/20
- ♥ 如何退出python的帮助功能10/08
- ♥ 如何判断python的列表不为空10/08
- ♥ python中TKinter的绑定方法09/14
内容反馈