如何在 python 中使用附加参数启动 getattr 函数?

发布于 2024-11-15 05:06:43 字数 41 浏览 2 评论 0原文

我想调用一些未知函数并使用 getattr 函数添加参数。是否可以?

I want to call some unknown function with adding parameters using getattr function. Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

≈。彩虹 2024-11-22 05:06:43

是的,但您不将它们传递给 getattr();一旦您引用了该函数,就可以像平常一样调用该函数。

getattr(obj, 'func')('foo', 'bar', 42)

Yes, but you don't pass them to getattr(); you call the function as normal once you have a reference to it.

getattr(obj, 'func')('foo', 'bar', 42)
深居我梦 2024-11-22 05:06:43

如果您希望使用动态参数/关键字参数列表调用动态方法,您可以执行以下操作:

function_name = 'wibble'
args = ['flip', 'do']
kwargs = {'foo':'bar'}

getattr(obj, function_name)(*args, **kwargs)

If you wish to invoke a dynamic method with a dynamic list of arguments / keyword arguments, you can do the following:

function_name = 'wibble'
args = ['flip', 'do']
kwargs = {'foo':'bar'}

getattr(obj, function_name)(*args, **kwargs)
笑红尘 2024-11-22 05:06:43

要调用的函数

import sys

def wibble(a, b, foo='foo'):
    print(a, b, foo)
    
def wibble_without_kwargs(a, b):
    print(a, b)
    
def wibble_without_args(foo='foo'):
    print(foo)
    
def wibble_without_any_args():
    print('huhu')


# have to be in the same scope as wibble
def call_function_by_name(function_name, args=None, kwargs=None):
    if args is None:
        args = list()
    if kwargs is None:
        kwargs = dict()
    getattr(sys.modules[__name__], function_name)(*args, **kwargs)

    
call_function_by_name('wibble', args=['arg1', 'arg2'], kwargs={'foo': 'bar'})
call_function_by_name('wibble_without_kwargs', args=['arg1', 'arg2'])
call_function_by_name('wibble_without_args', kwargs={'foo': 'bar'})
call_function_by_name('wibble_without_any_args')
# output:
# arg1 arg2 bar
# arg1 arg2
# bar
# huhu

function to call

import sys

def wibble(a, b, foo='foo'):
    print(a, b, foo)
    
def wibble_without_kwargs(a, b):
    print(a, b)
    
def wibble_without_args(foo='foo'):
    print(foo)
    
def wibble_without_any_args():
    print('huhu')


# have to be in the same scope as wibble
def call_function_by_name(function_name, args=None, kwargs=None):
    if args is None:
        args = list()
    if kwargs is None:
        kwargs = dict()
    getattr(sys.modules[__name__], function_name)(*args, **kwargs)

    
call_function_by_name('wibble', args=['arg1', 'arg2'], kwargs={'foo': 'bar'})
call_function_by_name('wibble_without_kwargs', args=['arg1', 'arg2'])
call_function_by_name('wibble_without_args', kwargs={'foo': 'bar'})
call_function_by_name('wibble_without_any_args')
# output:
# arg1 arg2 bar
# arg1 arg2
# bar
# huhu
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文