如何将元组作为函数的参数传递
我有一个包含元组的元组。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想将原点添加到参数中,类似这样的事情应该可以工作:
If you want to add the origin to the args, something like this should work:
像这样,可能是:
* 提取(扩展)内部元组并将它们作为参数传递给函数。
Like this, probably:
The * extracts (expand) the inner tuple and they are passed to the function as arguments.