假设我有一些类似的代码:def myfunc(anotherfunc, extraArgs): # 以某种方式在这里调用“anotherfunc”,并将“extraArgs”传递给它我想将另一个现有函数作为另一个函数传递...
假设我有一些如下代码:
def myfunc(anotherfunc, extraArgs):
# somehow call `anotherfunc` here, passing it the `extraArgs`
pass
我想将另一个现有函数作为 anotherfunc
参数传递,并将参数列表或元组作为传递 extraArgs
,并使用 myfunc
这些参数调用传入的函数。
这可能吗?我该怎么做?