通过使用模块名称(字符串)来调用模块的功能

泄露秘密 提交于 2020-04-06 12:51:08

问题:

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
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!