中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

灵丘县| 农安县| 莱芜市| 松滋市| 湖口县| 新宾| 东山县| 措勤县| 百色市| 潢川县| 东明县| 平利县| 潜山县| 芦溪县| 忻城县| 凌云县| 九龙城区| 富平县| 牙克石市| 长泰县| 安远县| 阳谷县| 鞍山市| 大荔县| 常宁市| 沁水县| 渭南市| 丹阳市| 房产| 日照市| 蒙自县| 保康县| 牙克石市| 武功县| 容城县| 九龙县| 正镶白旗| 盐边县| 尼勒克县| 通河县| 社旗县|