在python中作为参数传递函数时,如何只指定传递函数

时间:2017-10-10 05:16:09

标签: python

def func_a(func):
    return func(1)

def func_b(a, b=2):
    return a+b

假设上面有2个Python函数。 func_a(func_b)将返回1 + 2 = 3.在调用func_a时,有什么方法可以指定参数b的值,比如func_a(func_b,b = 3),这样我就可以更改默认参数& #39; b'调用func_b,而不向func_a添加其他参数。

0 个答案:

没有答案