python函数嵌套如何执行 python嵌套函数怎么调用

主机教程 建站分享 2年前 (2022-12-14) 171次浏览

文章摘要:python函数嵌套如何执行 python嵌套函数怎么调用

在python中执行嵌套函数的方法 1.执行不带参数的嵌套函数 def outer_func(): x=1 d […]

在python中执行嵌套函数的方法

1.执行不带参数的嵌套函数

def outer_func():

x=1

def inner_func():

result=x+1

print(result)

return inner_func

f1=outer_func()

f1()

输出结果为:

2

2.执行带参数的嵌套函数

1)外函数带有参数

def outer_func(x):

def inner_func():

print(x+1)

return inner_func

f1 = outer_func(1) # 返回inner函数对象

f1()

输出结果为:

2

2)内函数带有参数

def outer_func():

def inner_func(x):

print(x+1)

return inner_func

f1 = outer_func() # 返回inner函数对象

f1(10)

输出结果为:

11


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python函数嵌套如何执行 python嵌套函数怎么调用
文章链接:http://www.7966.org/post/14371.html
转载请注明出处

喜欢 (0)