# Auther: Aaron Fan# 嵌套函数# 定义:# 在一个函数体内,用def重新定义新的函数,才叫嵌套函数# 示例1: #属于嵌套函数def foo():
print("in the foo") def bar(): print("in the bar") bar()foo()#而这种就不属于嵌套函数:#def test1():# test2()#test1()本文共 241 字,大约阅读时间需要 1 分钟。
# Auther: Aaron Fan# 嵌套函数# 定义:# 在一个函数体内,用def重新定义新的函数,才叫嵌套函数# 示例1: #属于嵌套函数def foo():
print("in the foo") def bar(): print("in the bar") bar()foo()#而这种就不属于嵌套函数:#def test1():# test2()#test1()转载于:https://blog.51cto.com/fanheng/1881588