问题:
What is the best way to go about calling a function given a string with the function's name in a Python program. 在Python程序中,给定带有函数名称的字符串的最佳方法是什么? For example, let's say that I have a module foo
, and I have a string whose content is "bar"
. 例如,假设我有一个模块foo
,并且我有一个字符串,其内容为"bar"
。 What is the best way to call foo.bar()
? 调用foo.bar()
的最佳方法是什么?
I need to get the return value of the function, which is why I don't just use eval
. 我需要获取函数的返回值,这就是为什么我不只是使用eval
。 I figured out how to do it by using eval
to define a temp function that returns the result of that function call, but I'm hoping that there is a more elegant way to do this. 我想出了如何通过使用eval
定义一个返回该函数调用结果的temp函数来执行此操作的方法,但我希望有一种更优雅的方法来执行此操作。
解决方案:
参考一: https://stackoom.com/question/nN/通过使用模块名称-字符串-来调用模块的功能参考二: https://oldbug.net/q/nN/Calling-a-function-of-a-module-by-using-its-name-a-string
来源:oschina
链接:https://my.oschina.net/stackoom/blog/3217139