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

python 嵌套函数

时间:2016-12-29 08:46:10      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:python 嵌套函数

嵌套函数是在函数内部用def再定义一个函数,如下:

def test():

    print(‘this is test function‘)

    def test2():

        print(‘this is test2 function‘)

在嵌套函数只能在函数内部调用

实例

x = grandpa():
    = dad():
        = son():
            x = (x)
        son()
    dad()
grandpa()


若在函数内部定义的函数未被调用,则只是做了定义,不产生任何效果,这符合函数即‘变量’特性,换句话说,‘变量‘定义后未被调用,则不会产生任何的效果

python 嵌套函数

标签:python 嵌套函数

原文地址:http://daring.blog.51cto.com/891785/1887067

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