python函数示例_Python | 作为返回值的函数示例

python函数示例

Example:

例:

Here, we are defining two function foo() and koo(), function koo() will return as a value (return value of the function).

在这里,我们定义了两个函数foo()和koo() ,函数koo()将作为值返回(函数的返回值)。

The calling statement is x=koo() - where, koo() is first function and the return value of koo() (that is the function foo()) will store in the x (which is also a function).

调用语句为x = koo() -其中, koo()是第一个函数,而koo()的返回值(即函数foo() )将存储在x (也是一个函数)中。

Code:

码:

# defining a function
def foo():
    print("I am Foo")

# defining an another function
# it will return function as a return value
def koo():
    return foo

# function calling and assigning return value
# in x
x=koo()
x()

Output

输出量

I am Foo


翻译自: https://www.includehelp.com/python/function-as-return-value-example.aspx

python函数示例

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值