当前位置:  开发笔记 > 编程语言 > 正文

尝试将函数设置为参数

如何解决《尝试将函数设置为参数》经验,为你挑选了2个好方法。

我正在尝试创建一个获取数字和返回函数的函数.例如:

>>> const_function(2)(2)
2
>>> const_function(4)(2)
4

如何将函数作为输出返回?我试着写这个:

def const_function(c):
    def helper(x):
        return c
    return helper(x)

为什么这不起作用?



1> TigerhawkT3..:

您将返回调用该函数的结果.如果你想返回函数本身,只需在不调用它的情况下引用它:

def const_function(c):
    def helper(x):
        return c
    return helper # don't call it

现在您可以将它与期望的结果一起使用:

>>> const_function(2)
.helper at 0x0000000002B38D90>
>>> const_function(2)(2)
2
>>> const_function(4)(2)
4



2> Meir..:

尝试:

return helper

当你这样做时:

return helper(x)

它计算结果helper(x)并返回它.当你return helper它将返回功能本身.

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有