這篇文章給大家介紹怎么在python中動(dòng)態(tài)調(diào)用函數(shù),內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比曾都網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式曾都網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋曾都地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。1. 根據(jù)字符串名稱 動(dòng)態(tài)調(diào)用 python文件內(nèi)的方法eval("function_name")(參數(shù))
2. 根據(jù)字符串 動(dòng)態(tài)調(diào)用類中的靜態(tài)方法,getattr(ClassName,"function_name")(參數(shù))
3. apply(functoin_name,parameters) 這個(gè)function_name不是字符串,而是函數(shù)對(duì)象本身;parameters是參數(shù),類似(a,b,...)這樣的格式
4. 當(dāng)函數(shù)不確定參數(shù)的數(shù)目時(shí)候,采用 一個(gè) * 或兩個(gè)** 他們的用法是有講究的。
下面的例子是,定義了一個(gè)函數(shù)列表字典,字典中保存有函數(shù)對(duì)象和函數(shù)的參數(shù),可以實(shí)現(xiàn)動(dòng)態(tài)為字典添加執(zhí)行的函數(shù),最后一起執(zhí)行
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
關(guān)于怎么在python中動(dòng)態(tài)調(diào)用函數(shù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。