码迷,mamicode.com
首页 > 编程语言 > 详细

python3--嵌套函数

时间:2016-12-11 03:26:27      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:python 嵌套函数

# 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--嵌套函数

标签:python 嵌套函数

原文地址:http://fanheng.blog.51cto.com/974941/1881588

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!