91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

沿河| 漳浦县| 宽城| 崇阳县| 深泽县| 稻城县| 松江区| 浦县| 西丰县| 江门市| 哈巴河县| 右玉县| 南平市| 马鞍山市| 宁明县| 华坪县| 江华| 永仁县| 旺苍县| 呈贡县| 平昌县| 金乡县| 库伦旗| 乌鲁木齐市| 顺昌县| 桓仁| 偃师市| 凤城市| 玉田县| 古浪县| 凤阳县| 海原县| 寿光市| 宕昌县| 晋州市| 荥阳市| 昭苏县| 阿拉善左旗| 富川| 灵寿县| 泽州县|