python3--嵌套函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3--嵌套函数相关的知识,希望对你有一定的参考价值。
# Auther: Aaron Fan
# 嵌套函数
# 定义:
# 在一个函数体内,用def重新定义新的函数,才叫嵌套函数
# 示例1: #属于嵌套函数
def foo():
print("in the foo")
def bar():
print("in the bar")
bar()
foo()
#而这种就不属于嵌套函数:
#def test1():
# test2()
#test1()
本文出自 “近朱者赤” 博客,请务必保留此出处http://fanheng.blog.51cto.com/974941/1881588
以上是关于python3--嵌套函数的主要内容,如果未能解决你的问题,请参考以下文章