为了账号安全,请及时绑定邮箱和手机立即绑定

使用其名称(字符串)调用模块的函数

使用其名称(字符串)调用模块的函数

神不在的星期二 2019-05-27 15:47:08
使用其名称(字符串)调用模块的函数在Python程序中给定带有函数名称的字符串调用函数的最佳方法是什么。例如,假设我有一个模块foo,我有一个内容为的字符串"bar"。什么是最好的打电话foo.bar()?我需要获取函数的返回值,这就是我不仅仅使用它的原因eval。我想通过使用eval定义一个返回该函数调用结果的临时函数来做到这一点,但我希望有更优雅的方法来做到这一点。
查看完整描述

4 回答

?
HUWWW

TA贡献1874条经验 获得超12个赞

假设模块foo有方法bar

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

就此而言,第2行和第3行可以压缩为:

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

如果这对你的用例更有意义。您可以getattr以这种方式使用类实例绑定方法,模块级方法,类方法......列表继续。


查看完整回答
反对 回复 2019-05-27
?
www说

TA贡献1775条经验 获得超8个赞

帕特里克的解决方案可能是最干净的。如果您还需要动态选择模块,可以将其导入为:

module = __import__('foo')func = getattr(module, 'bar')func()


查看完整回答
反对 回复 2019-05-27
?
慕容708150

TA贡献1831条经验 获得超4个赞

只是一个简单的贡献。如果我们需要实例的类在同一个文件中,我们可以使用这样的东西:


# 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')


查看完整回答
反对 回复 2019-05-27
  • 4 回答
  • 0 关注
  • 783 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信