python 内嵌函数

Posted 爬虫爬一个

tags:

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

def func1():
    print(func1()正在被调用)
    def func2():
        print(func2()正在被调用)
    func2()
    return 5

print(func1())

 

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

python 内嵌函数

Python--12 内嵌函数和闭包

Python 学习笔记 -- 内嵌函数闭包匿名函数高阶函数map高阶函数filter高阶函数reduce

Python内嵌函数

Python内嵌函数与Lambda表达式

Python自学之函数内嵌和闭包