2174

在 Python 程序中给定带有函数名称的字符串,调用函数的最佳方法是什么。例如,假设我有一个 module foo,并且我有一个字符串,其内容是"bar". 最好的打电话方式是foo.bar()什么?

我需要获取函数的返回值,这就是为什么我不只使用eval. 我想出了如何通过使用eval定义一个返回该函数调用结果的临时函数来做到这一点,但我希望有一种更优雅的方式来做到这一点。

4

18 回答 18

2595

假设foo具有方法的模块bar

import foo
method_to_call = getattr(foo, 'bar')
result = method_to_call()

您可以将第 2 行和第 3 行缩短为:

result = getattr(foo, 'bar')()

如果这对您的用例更有意义。

您可以getattr以这种方式在类实例绑定方法、模块级方法、类方法上使用……不胜枚举。

于 2008-08-06T03:57:16.820 回答
673
locals()["myfunction"]()

或者

globals()["myfunction"]()

locals返回带有当前本地符号表的字典。globals返回一个带有全局符号表的字典。

于 2009-05-07T12:45:13.747 回答
412

帕特里克的解决方案可能是最干净的。如果您还需要动态获取模块,您可以像这样导入它:

module = __import__('foo')
func = getattr(module, 'bar')
func()
于 2008-08-07T11:35:23.323 回答
149

只是一个简单的贡献。如果我们需要实例化的类在同一个文件中,我们可以使用如下内容:

# Get class from globals and create an instance
m = globals()['our_class']()

# Get the function (from the instance) that we need to call
func = getattr(m, 'function_name')

# Call it
func()

例如:

class A:
    def __init__(self):
        pass

    def sampleFunc(self, arg):
        print('you called sampleFunc({})'.format(arg))

m = globals()['A']()
func = getattr(m, 'sampleFunc')
func('sample arg')

# Sample, all on one line
getattr(globals()['A'](), 'sampleFunc')('sample arg')

而且,如果不是一个类:

def sampleFunc(arg):
    print('you called sampleFunc({})'.format(arg))

globals()['sampleFunc']('sample arg')
于 2012-08-19T09:40:43.627 回答
139

给定一个字符串,一个函数的完整 python 路径,这就是我如何获取所述函数的结果:

import importlib
function_string = 'mypackage.mymodule.myfunc'
mod_name, func_name = function_string.rsplit('.',1)
mod = importlib.import_module(mod_name)
func = getattr(mod, func_name)
result = func()
于 2013-10-16T00:24:22.033 回答
80

根据Python 编程常见问题解答的最佳答案是:

functions = {'myfoo': foo.bar}

mystring = 'myfoo'
if mystring in functions:
    functions[mystring]()

这种技术的主要优点是字符串不需要匹配函数的名称。这也是用于模拟案例构造的主要技术

于 2016-10-24T13:20:46.897 回答
66

答案(我希望)没人想要

评估类行为

getattr(locals().get("foo") or globals().get("foo"), "bar")()

为什么不添加自动导入

getattr(
    locals().get("foo") or 
    globals().get("foo") or
    __import__("foo"), 
"bar")()

如果我们有额外的字典要检查

getattr(next((x for x in (f("foo") for f in 
                          [locals().get, globals().get, 
                           self.__dict__.get, __import__]) 
              if x)),
"bar")()

我们需要更深入

getattr(next((x for x in (f("foo") for f in 
              ([locals().get, globals().get, self.__dict__.get] +
               [d.get for d in (list(dd.values()) for dd in 
                                [locals(),globals(),self.__dict__]
                                if isinstance(dd,dict))
                if isinstance(d,dict)] + 
               [__import__])) 
        if x)),
"bar")()
于 2014-04-09T10:17:41.807 回答
39

对于它的价值,如果您需要将函数(或类)名称和应用程序名称作为字符串传递,那么您可以这样做:

myFnName  = "MyFn"
myAppName = "MyApp"
app = sys.modules[myAppName]
fn  = getattr(app,myFnName)
于 2012-02-14T05:55:36.507 回答
37

试试这个。虽然这仍然使用 eval,但它只使用它从当前 context 中调用函数。然后,您就可以根据需要使用真正的功能了。

这样做对我的主要好处是,在调用函数时,您将收到任何与 eval 相关的错误。然后你在调用时只会得到函数相关的错误。

def say_hello(name):
    print 'Hello {}!'.format(name)

# get the function by name
method_name = 'say_hello'
method = eval(method_name)

# call it like a regular function later
args = ['friend']
kwargs = {}
method(*args, **kwargs)
于 2016-12-07T18:29:30.357 回答
19

任何建议都没有帮助我。我确实发现了这一点。

<object>.__getattribute__(<string name>)(<params>)

我正在使用 python 2.66

希望这可以帮助

于 2012-12-28T16:56:45.310 回答
15

作为这个问题如何使用方法名称分配给标记为与此重复的变量[重复]来动态调用类中的方法,我在这里发布了相关答案:

场景是,一个类中的一个方法想要动态调用同一个类上的另一个方法,我在原始示例中添加了一些细节,它提供了一些更广泛的场景和清晰度:

class MyClass:
    def __init__(self, i):
        self.i = i

    def get(self):
        func = getattr(MyClass, 'function{}'.format(self.i))
        func(self, 12)   # This one will work
        # self.func(12)    # But this does NOT work.


    def function1(self, p1):
        print('function1: {}'.format(p1))
        # do other stuff

    def function2(self, p1):
        print('function2: {}'.format(p1))
        # do other stuff


if __name__ == "__main__":
    class1 = MyClass(1)
    class1.get()
    class2 = MyClass(2)
    class2.get()

输出(Python 3.7.x)

功能1:12

功能2:12

于 2019-03-26T18:15:53.643 回答
14

尽管 getattr() 是优雅的(大约快 7 倍)方法,但您可以使用 eval 与x = eval('foo.bar')(). 并且当您实现一些错误处理时,就会非常安全(相同的原理可以用于 getattr)。模块导入和类的示例:

# import module, call module function, pass parameters and print retured value with eval():
import random
bar = 'random.randint'
randint = eval(bar)(0,100)
print(randint) # will print random int from <0;100)

# also class method returning (or not) value(s) can be used with eval: 
class Say:
    def say(something='nothing'):
        return something

bar = 'Say.say'
print(eval(bar)('nice to meet you too')) # will print 'nice to meet you' 

当模块或类不存在(错字或更好的东西)时,会引发 NameError。当函数不存在时,会引发 AttributeError。这可用于处理错误:

# try/except block can be used to catch both errors
try:
    eval('Say.talk')() # raises AttributeError because function does not exist
    eval('Says.say')() # raises NameError because the class does not exist
    # or the same with getattr:
    getattr(Say, 'talk')() # raises AttributeError
    getattr(Says, 'say')() # raises NameError
except AttributeError:
    # do domething or just...
    print('Function does not exist')
except NameError:
    # do domething or just...
    print('Module does not exist')
于 2020-07-16T15:20:48.160 回答
11

在python3中,您可以使用该__getattribute__方法。请参阅以下带有列表方法名称字符串的示例:

func_name = 'reverse'

l = [1, 2, 3, 4]
print(l)
>> [1, 2, 3, 4]

l.__getattribute__(func_name)()
print(l)
>> [4, 3, 2, 1]
于 2021-07-07T09:30:06.627 回答
6

getattr从对象中按名称调用方法。但是这个对象应该是调用类的父对象。父类可以通过super(self.__class__, self)

class Base:
    def call_base(func):
        """This does not work"""
        def new_func(self, *args, **kwargs):
            name = func.__name__
            getattr(super(self.__class__, self), name)(*args, **kwargs)
        return new_func

    def f(self, *args):
        print(f"BASE method invoked.")

    def g(self, *args):
        print(f"BASE method invoked.")

class Inherit(Base):
    @Base.call_base
    def f(self, *args):
        """function body will be ignored by the decorator."""
        pass

    @Base.call_base
    def g(self, *args):
        """function body will be ignored by the decorator."""
        pass

Inherit().f() # The goal is to print "BASE method invoked."
于 2020-07-01T08:09:44.203 回答
5

还没有人提到operator.attrgetter

>>> from operator import attrgetter
>>> l = [1, 2, 3]
>>> attrgetter('reverse')(l)()
>>> l
[3, 2, 1]
>>> 
于 2021-09-20T06:13:10.933 回答
2

我之前遇到过类似的问题,即将字符串转换为函数。但我不能使用eval()or ast.literal_eval(),因为我不想立即执行此代码。

例如,我有一个字符串"foo.bar",我想将其分配x为函数名而不是字符串,这意味着我可以通过x() ON DEMAND调用该函数。

这是我的代码:

str_to_convert = "foo.bar"
exec(f"x = {str_to_convert}")
x()

至于你的问题,你只需要添加你的模块名称foo.之前{}如下:

str_to_convert = "bar"
exec(f"x = foo.{str_to_convert}")
x()

警告!!!要么 要么eval()exec()一种危险的方法,你应该确认安全性。 警告!!!要么 要么eval()exec()一种危险的方法,你应该确认安全性。 警告!!!要么 要么eval()exec()一种危险的方法,你应该确认安全性。

于 2021-06-15T08:14:59.950 回答
1

你的意思是从模块中获取指向内部函数的指针

import foo
method = foo.bar
executed = method(parameter)

对于准时的情况,这不是更好的pythonic方式确实是可能的

于 2021-12-30T01:17:18.723 回答
-13

这是一个简单的答案,例如,这将允许您清除屏幕。下面有两个示例,使用 eval 和 exec,在清理后将在顶部打印 0(如果您使用的是 Windows,则更clear改为cls,例如 Linux 和 Mac 用户保持原样)或分别执行它。

eval("os.system(\"clear\")")
exec("os.system(\"clear\")")
于 2019-08-28T16:46:12.583 回答