Python函数-嵌套函数

Posted Sch01aR#

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python函数-嵌套函数相关的知识,希望对你有一定的参考价值。

嵌套函数就是在一个函数里再嵌套一个或多个函数

# -*- coding:utf-8 -*-
__author__ = "MuT6 Sch01aR"

def First():
    print("in the first")
    def Second():
        print("in the second")
        def Third():
            print("in the third")
        Third()
    Second()
First()

运行结果

如果要修改嵌套作用域中的变量,则需要nonlocal关键字

# -*- coding:utf-8 -*-
__author__ = "MuT6 Sch01aR"
 
def outer():
    name = \'John\'
    def inner():
        nonlocal name
        name = \'Jack\'
        print(name)
    inner()
    print(name)
outer()

运行结果

 

以上是关于Python函数-嵌套函数的主要内容,如果未能解决你的问题,请参考以下文章

Python嵌套函数和闭包

Python入门-5函数:09嵌套函数(内部函数)-数据隐藏

python-函数&高阶函数&嵌套函数&装饰器

Python中的嵌套函数

013.Python之函数嵌套名称空间与作用域闭包函数

Python嵌套函数变量范围[重复]