Python 函数嵌套用法举例

发布时间:2020-01-07编辑:脚本学堂
介绍下Python的函数嵌套的用法,通过实例掌握python中函数嵌套的用法,有需要的朋友参考下。

例子,python 函数。
 

复制代码 代码示例:
def re_escape(fn):
    def arg_escaped(this, *args):
        t = [isinstance(a, VerEx) and a.s or re.escape(str(a)) for a in args]
        return fn(this, *t)
    return arg_escaped

python 函数嵌套

python允许在定义函数时,其函数体内又包含另外一个函数的完整定义,这就是通常所说的嵌套定义。
为什么?因为函数是用def语句定义的,凡是其他语句可以出现的地方,def语句同样可以出现。
像这样定义在其他函数内的函数叫做内部函数,内部函数所在的函数叫做外部函数。

当然,可以多层嵌套,除了最外层和最内层的函数之外,其它函数既是外部函数又是内部函数。

使用方法(python 函数嵌套):
 

复制代码 代码示例:
spam = 99
def tester():
    def nested():
        global spam
        print('current=',spam)
        spam += 1
    return nested
#注意:打印 print 那行的代码调用是tester()()
#而不是tester().nested()