python 内嵌函数

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

print(func1())
原文地址:https://www.cnblogs.com/ssxsy/p/9127508.html