本文介绍了Python:传递一个参数作为参数的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
def lite(a,b,c):
#...
def big(func):#func = callable()
#...
#main
big(lite(1,2,3))
如何做到这一点?
以什么方式将参数传递给另一个函数?
big(lite,(1, 2,3))
?
然后你可以这样做:
def big(func,args):
func(* args)
def lite(a,b,c):
#...
def big(func): # func = callable()
#...
#main
big(lite(1,2,3))
how to do this?
in what way to pass function with parameters to another function?
解决方案
Why not do:
big(lite, (1, 2, 3))
?
Then you can do:
def big(func, args):
func(*args)
这篇关于Python:传递一个参数作为参数的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!