摘要: 一.nonlocal关键字​ 1.作用:将 L 与 E(E中的名字需要提前定义)的名字统一​ 2.应用场景:如果想在被嵌套的函数中修改外部函数变量(名字)的值​ 3.案例:​ def outer()​ num = 10​ print(num) # 10 ​ def inner():​ nonloca 阅读全文
posted @ 2019-04-02 15:28 Lip&Hip 阅读(81) 评论(0) 推荐(0) 编辑