如何将元组作为函数的参数传递

发布于 2024-11-24 02:55:20 字数 545 浏览 0 评论 0原文

我有一个包含元组的元组。

EVENT_MAPPING = (
    (func1, (paramA1, paramA2, paramA3)),
    (func2, (paramB1)),
    (func3, (paramC1, paramC2)),
)

我迭代第一个元组。我想使用第二个参数中的参数以及其他参数来调用第一个参数中包含的函数。例如,对于第一个元组:

func1(origin, paramA1, paramA2, paramA3)

如果它们没有“origin”参数,我可以打电话感谢:

args[0](args[1])

但是有了额外的参数(“origin”),我就不能做这样的事情了。 我找到了一种方法,但它很重:

call = tuple(list(args[1]).insert(0,origin))
args[0](call)

有更好的方法吗?

感谢您的帮助

I have a tuple containing tuples.

EVENT_MAPPING = (
    (func1, (paramA1, paramA2, paramA3)),
    (func2, (paramB1)),
    (func3, (paramC1, paramC2)),
)

I iterate over the first tuple. And I want to call the function contained in the first param with args in the second param plus other param. For example, for the first tuple :

func1(origin, paramA1, paramA2, paramA3)

If their is no the "origin" param, I can have a call thanks to :

args[0](args[1])

But with the extra param ("origin"), I can't do things like that.
I found a way to do it but it is heavy :

call = tuple(list(args[1]).insert(0,origin))
args[0](call)

Is there a better way to do this ?

Thanks for your help

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

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

发布评论

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

评论(3

泛滥成性 2024-12-01 02:55:22

如果你想将原点添加到参数中,类似这样的事情应该可以工作:

for func, args in EVENT_MAPPING:
    func(*(origin,)+args)

If you want to add the origin to the args, something like this should work:

for func, args in EVENT_MAPPING:
    func(*(origin,)+args)
寻找一个思念的角度 2024-12-01 02:55:21

像这样,可能是:

for func, args in EVENT_MAPPING:
  func(*args)

* 提取(扩展)内部元组并将它们作为参数传递给函数。

Like this, probably:

for func, args in EVENT_MAPPING:
  func(*args)

The * extracts (expand) the inner tuple and they are passed to the function as arguments.

寒冷纷飞旳雪 2024-12-01 02:55:21
for func, args in EVENT_MAPPING:
    func(origin, *args)
for func, args in EVENT_MAPPING:
    func(origin, *args)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文