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函数-嵌套函数的主要内容,如果未能解决你的问题,请参考以下文章