python如何看变量属性
1、使用dir()函数查看
dir()函数不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表。
$python
Python2.7.8(default,Sep242015,18:26:19)
[GCC4.9.220150212(RedHat4.9.2-6)]onlinux2
Type"help","copyright","credits"or"license"formoreinformation.
>>>importcv2
>>>mser=cv2.MSER()
>>>dir(mser)
['__class__','__delattr__','__doc__','__format__','__getattribute__','__hash__','__init__','__new__','__reduce__','__reduce_ex__','__repr__','__setattr__','__sizeof__','__str__','__subclasshook__','detect','empty','getAlgorithm','getBool','getDouble','getInt','getMat','getMatVector','getParams','getString','paramHelp','paramType','setAlgorithm','setBool','setDouble','setInt','setMat','setMatVector','setString']
2、使用vars()函数查看
vars()函数返回对象object的属性和属性值的字典对象。
>>>vars(mser)
Traceback(mostrecentcalllast):
File"",line1,in
TypeError:vars()argumentmusthave__dict__attribute
>>>mser.__dict__
Traceback(mostrecentcalllast):
File"",line1,in
AttributeError:'cv2.MSER'objecthasnoattribute'__dict__'
以上内容为大家介绍了python如何看变量属性,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:开发教育。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!