亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python實現使用dir獲取類的方法列表

發布時間:2020-09-07 18:06:08 來源:腳本之家 閱讀:162 作者:肖哥shelwin 欄目:開發技術

使用Python的內置方法dir,可以范圍一個模塊中定義的名字的列表。

官方解釋是:

Docstring:
dir([object]) -> list of strings

If called without an argument, return the names in the current scope.
Else, return an alphabetized list of names comprising (some of) the attributes
of the given object, and of attributes reachable from it.
If the object supplies a method named __dir__, it will be used; otherwise
the default dir() logic is used and returns:
 for a module object: the module's attributes.
 for a class object: its attributes, and recursively the attributes
  of its bases.
 for any other object: its attributes, its class's attributes, and
  recursively the attributes of its class's base classes.

通過dir方法,我們可以在一個類的內部,獲取當前類的名字滿足某些特征的所有方法。

下面是一個例子:

class A(object):
  def A_X_1(self):
    pass

  def A_X_2(self):
    pass

  def A_X_3(self):
    pass

  def get_A_X_methods(self):
    return filter(lambda x: x.startswith('A_X') and callable(getattr(self,x)), dir(self))

執行:

print A().get_A_X_methods()

輸出結果為:

> ['A_X_1', 'A_X_2', 'A_X_3']

以上這篇Python實現使用dir獲取類的方法列表就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临夏县| 宝清县| 西林县| 界首市| 白河县| 讷河市| 乡城县| 武乡县| 三门峡市| 桐城市| 威宁| 讷河市| 营山县| 宁化县| 客服| 新密市| 庆城县| 大余县| 靖远县| 浦县| 科尔| 抚顺县| 武冈市| 清水县| 鄂尔多斯市| 湘潭县| 鹤壁市| 永川市| 石门县| 日照市| 孙吴县| 牙克石市| 磐石市| 内黄县| 山西省| 吴桥县| 永仁县| 务川| 上思县| 维西| 宁国市|