首页 > 编程语言 > 详细

python之函数用法vars()

时间:2015-11-07 18:58:10      阅读:438      评论:0      收藏:0      [点我收藏+]
# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#python之函数用法vars()



#vars()
#说明:返回对象object的属性和属性值的字典对象
‘‘‘
vars(...)
    vars([object]) -> dictionary
    dictionary:字典对象
    
    Without arguments, equivalent to locals().
    With an argument, equivalent to object.__dict__.
‘‘‘

class My():
    Test
    def __init__(self,name):
        self.name=name

    def test(self):
        print self.name

        
vars(My)#返回一个字典对象,他的功能其实和  My.__dict__  很像

for key,value in vars(My).items():
    print key,:,value
    ‘‘‘
    test : <function test at 0x02112C70>----test函数
    __module__ : __main__
    __doc__ : Test
    __init__ : <function __init__ at 0x01E42B70>----构造函数
    ‘‘‘

 

python之函数用法vars()

原文:http://www.cnblogs.com/dengyg200891/p/4945764.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!