首页 > 编程语言 > 详细

python3--嵌套函数

时间:2016-12-11 07:43:08      阅读:240      评论:0      收藏:0      [点我收藏+]
# Auther: Aaron Fan

# 嵌套函数
# 定义:
# 在一个函数体内,用def重新定义新的函数,才叫嵌套函数
# 示例1: #属于嵌套函数
def foo():
print("in the foo")
def bar():
print("in the bar")
bar()
foo()

#而这种就不属于嵌套函数:
#def test1():
# test2()
#test1()

python3--嵌套函数

原文:http://www.cnblogs.com/AaronFan/p/6158853.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!