Python函数可以作为另一个函数的参数吗?
说:
def myfunc(anotherfunc, extraArgs):
# run anotherfunc and also pass the values from extraArgs to it
pass
所以这基本上是两个问题:
- 可以吗?
- 如果是的话,如何在其他函数中使用该函数?我需要使用exec(),eval()还是类似的东西?从来不需要与他们搞混。
顺便说一句,extraArgs是anotherfunc参数的列表/元组。
相关:stackoverflow.com/questions/47502068/…–
—
alseether