gpt4 book ai didi

python - 将空/noop 函数/lambda 作为默认参数传递

转载 作者:太空狗 更新时间:2023-10-29 21:15:41 26 4
gpt4 key购买 nike

这是我的代码:

def execute(f, *args):
f(args)

我有时不想将函数 f 传递给 execute,所以我希望 f 默认为空函数。

最佳答案

The problem is that sometimes want to pass no argument to execute, so I want function to default to the empty function.

对我来说很好:

>>> def execute(function = lambda x: x, *args):
... print function, args
... function(args)
...
>>> execute()
<function <lambda> at 0x01DD1A30> ()
>>>

我确实注意到您的示例尝试在实现中使用 f,而您调用了参数 function。真的有那么简单吗? ;)

也就是说,您需要了解 Python 无法告诉您要跳过默认参数,除非根本没有参数,因此 execute(0) 无法正常工作尝试将 0 视为一个函数。

关于python - 将空/noop 函数/lambda 作为默认参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8818197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com