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

溫馨提示×

溫馨提示×

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

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

怎么在python中動態調用函數

發布時間:2021-03-10 15:56:21 來源:億速云 閱讀:206 作者:Leah 欄目:開發技術

這篇文章給大家介紹怎么在python中動態調用函數,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1. 根據字符串名稱 動態調用 python文件內的方法eval("function_name")(參數)

2. 根據字符串 動態調用類中的靜態方法,getattr(ClassName,"function_name")(參數)

3. apply(functoin_name,parameters) 這個function_name不是字符串,而是函數對象本身;parameters是參數,類似(a,b,...)這樣的格式

4. 當函數不確定參數的數目時候,采用 一個 * 或兩個** 他們的用法是有講究的。

下面的例子是,定義了一個函數列表字典,字典中保存有函數對象和函數的參數,可以實現動態為字典添加執行的函數,最后一起執行

from collections import OrderedDict
 
class ComponentCheck:
  def __init__(self, data_dir):
    self.data_dir = data_dir
 
    self._extend_function_dic = OrderedDict({})
 
  def add_extend_function(self, function_name, *parameters):
    self._extend_function_dic[function_name] = parameters
 
  def _check_extend_function(self):
    for function_name, parameters in self._extend_function_dic.iteritems():
      if not apply(function_name, parameters):
        return False
    return True
 
class CheckFunctions:
  def __init__(self):
    pass
 
  def tollcost_check(data_path):
    toll_cost_path = os.path.join(data_path, Importer.DT_KOR_TOLL_COST)
    tollcost_component = ComponentCheck(toll_cost_path)
    tollcost_component.add_extend_function(tollcost_component.check_file_pattern_list_match, CheckFunctions.TOLL_COST_FILENAME_PATTERN)
    return tollcost_component
@staticmethod
  def speed_camera_check(data_path):
    speed_camera_path = os.path.join(data_path, Importer.DT_SAFETY_CAMERA)
    speed_camera_component = ComponentCheck(speed_camera_path)
    speed_camera_component.add_extend_function(speed_camera_component.check_not_exist_empty_directory)
    return speed_camera_component

關于怎么在python中動態調用函數就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

屏东市| 蒙山县| 玛曲县| 武陟县| 盐山县| 泗阳县| 冀州市| 景洪市| 博罗县| 江阴市| 万宁市| 庆云县| 西吉县| 隆子县| 大田县| 兴海县| 平谷区| 荣成市| 平江县| 晋宁县| 邯郸市| 铜山县| 临泉县| 日照市| 浦城县| 松溪县| 福建省| 黎川县| 东海县| 黄大仙区| 马龙县| 拜泉县| 梨树县| 东城区| 兰坪| 旬邑县| 望城县| 阿拉善左旗| 金华市| 鄂尔多斯市| 于田县|