vars() 函数返回对象object的属性和属性值的字典对象。
vars([object])
object -- 对象
返回对象object的属性和属性值的字典对象,如果没有参数,就打印当前调用位置的属性和属性值 类似 locals()函数。
print(vars()) '''结果 {'__builtins__': <module 'builtins' (built-in)>, '__cached__': None, '__file__': '/home/python/Desktop/pc/pc/apps/contents/tests.py', '__doc__': None, '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x7f2e5fa78ac8>, '__package__': None, '__spec__': None, '__name__': '__main__'} ''' class Test(object): num = 1 _num = 2 def add(self): return self.num + self._num print(vars(Test)) '''输出结果 {'__weakref__': <attribute '__weakref__' of 'Test' objects>, '__dict__': <attribute '__dict__' of 'Test' objects>, '__doc__': None, 'num': 1, 'add': <function Test.add at 0x7f0321986b70>, '_num': 2, '__module__': '__main__'} '''
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理