Python教程:通过函数名调用函数的3种场景实现
生活随笔
收集整理的這篇文章主要介紹了
Python教程:通过函数名调用函数的3种场景实现
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一、說明
除了執(zhí)行系統(tǒng)命令外,我們有時(shí)還需要?jiǎng)討B(tài)地執(zhí)行一些python代碼,有經(jīng)驗(yàn)的朋友就會(huì)知道可以使用內(nèi)置函數(shù)eval實(shí)現(xiàn)這一需求,如eval("print(__file__)"),這還是比較簡單的。
但如果要?jiǎng)討B(tài)執(zhí)行一個(gè)函數(shù),講的資料就會(huì)少一點(diǎn),這次就要看這個(gè)需求該如何實(shí)現(xiàn)。
二、通過eval實(shí)現(xiàn)
1 通過eval調(diào)用同一個(gè)類內(nèi)的函數(shù)
class TestA:def __init__(self):self.config_dict = {"be_called_function_name": "self.be_called_function()",}passdef active_call_function(self):print("here is active_call_function.")be_called_function_name = self.config_dict["be_called_function_name"]# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了# 另外也可以是"be_called_function_name"是"be_called_function",然后eval(be_called_function_name)()eval(be_called_function_name)passdef be_called_function(self):print("here is be_called_function.")if __name__ == "__main__":obj = TestA()obj.active_call_function()2 通過eval調(diào)用同一個(gè)文件內(nèi)的一級函數(shù)
''' 遇到問題沒人解答?小編創(chuàng)建了一個(gè)Python學(xué)習(xí)交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯(cuò)的視頻學(xué)習(xí)教程和PDF電子書! ''' class TestA:def __init__(self):self.config_dict = {"be_called_function_name": "be_called_function()",}passdef active_call_function(self):print("here is active_call_function.")be_called_function_name = self.config_dict["be_called_function_name"]# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了# 另外也可以是"be_called_function_name"是"be_called_function",然后eval(be_called_function_name)()eval(be_called_function_name)passdef be_called_function():print("here is be_called_function.")if __name__ == "__main__":obj = TestA()obj.active_call_function()三、通過getattr實(shí)現(xiàn)
1 通過函數(shù)名調(diào)用同一個(gè)類內(nèi)的函數(shù)
class TestA:def __init__(self):self.config_dict = {"be_called_function_name": "be_called_function",}passdef active_call_function(self):print("here is active_call_function.")# getaattr(module_name, function_name),module_name傳self即可be_called_function = getattr(self, self.config_dict["be_called_function_name"])# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了be_called_function()passdef be_called_function(self):print("here is be_called_function.")if __name__ == "__main__":obj = TestA()obj.active_call_function()2 通過函數(shù)名調(diào)用其他類的函數(shù)
class TestA:def __init__(self):self.config_dict = {"be_called_function_name": "be_called_function",}passdef active_call_function(self):print("here is active_call_function.")# getaattr(module_name, function_name),module_name傳被調(diào)用的函數(shù)所在的類的類實(shí)例testb_obj = TestB()be_called_function = getattr(testb_obj, self.config_dict["be_called_function_name"])# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了be_called_function()passclass TestB:def be_called_function(self):print("here is be_called_function.")if __name__ == "__main__":obj = TestA()obj.active_call_function()3 通過函數(shù)名調(diào)用同文件的一級函數(shù)
''' 遇到問題沒人解答?小編創(chuàng)建了一個(gè)Python學(xué)習(xí)交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯(cuò)的視頻學(xué)習(xí)教程和PDF電子書! ''' import sysclass TestA:def __init__(self):self.config_dict = {"be_called_function_name": "be_called_function",}passdef active_call_function(self):print("here is active_call_function.")# getaattr(module_name, function_name),module_name傳當(dāng)前模塊名module_name = sys.modules['__main__']be_called_function = getattr(module_name, self.config_dict["be_called_function_name"])# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了be_called_function()passdef be_called_function():print("here is be_called_function.")if __name__ == "__main__":obj = TestA()obj.active_call_function()4 通過函數(shù)名調(diào)用在其他文件的一級函數(shù)
class TestA:def __init__(self):self.config_dict = {"be_called_function_name": "be_called_function",}passdef active_call_function(self):print("here is active_call_function.")# getaattr(module_name, function_name),module_name傳函數(shù)所在模塊名# __import__()傳函數(shù)所在文件module_name = __import__("test_call_function_by_string1")be_called_function = getattr(module_name, self.config_dict["be_called_function_name"])# 就直接調(diào)用。如果有其他參數(shù),一樣地傳就好了be_called_function()passif __name__ == "__main__":obj = TestA()obj.active_call_function()總結(jié)
以上是生活随笔為你收集整理的Python教程:通过函数名调用函数的3种场景实现的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python3压缩和解压缩实现
- 下一篇: Python教程:文件路径/目录获取教程