python_60_装饰器3

#嵌套函数
def foo():
    print('in the foo')
    def bar():
        print('in the bar')
    bar()
#bar()#出错,无法在外边调用,bar函数的作用范围只在foo函数之内
foo()

  

posted @ 2018-01-28 21:07  耐烦不急  阅读(117)  评论(0编辑  收藏  举报