(9) python之闭包
闭包闭包 = 函数 + 环境变量(函数定义的时候)
一个最简单的闭包1234567def curve_pre(): def curve(): print('This is a function') return curvef = curve_pre()f
...
Stay Hungry,Stay Foolish