溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python看變量屬性的方法

發(fā)布時(shí)間:2020-07-09 16:39:16 來源:億速云 閱讀:557 作者:清晨 欄目:編程語(yǔ)言

小編給大家分享一下python看變量屬性的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

python中查看變量屬性的

1、使用dir()函數(shù)查看

dir() 函數(shù)不帶參數(shù)時(shí),返回當(dāng)前范圍內(nèi)的變量、方法和定義的類型列表;帶參數(shù)時(shí),返回參數(shù)的屬性、方法列表。

$ python

Python 2.7.8 (default, Sep 24 2015, 18:26:19)

[GCC 4.9.2 20150212 (Red Hat 4.9.2-6)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import cv2

>>> 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()函數(shù)查看

vars() 函數(shù)返回對(duì)象object的屬性和屬性值的字典對(duì)象。

>>> vars(mser)

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

TypeError: vars() argument must have __dict__ attribute

>>> mser.__dict__

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

AttributeError: 'cv2.MSER' object has no attribute '__dict__'

看完了這篇文章,相信你對(duì)python看變量屬性的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI