闭包

#闭包:嵌套函数,内部函数调用外部函数的变量
注:闭包可以在全局下使用嵌套的内部函数,避免多次使用时嵌套函数的变量空间多次生成
def outer():
    a = 1
    def inner():
        print(a)
    return inner
inn = outer()
inn()

示例二

# import urllib  #模块
from urllib.request import urlopen
# ret = urlopen('http://www.xiaohua100.cn/index.html').read()
# print(ret)
# def get_url():
#     url = 'http://www.xiaohua100.cn/index.html'
#     ret = urlopen(url).read()
#     print(ret)
#
# get_url()

def get_url():
    url = 'http://www.xiaohua100.cn/index.html'
    def get():
        ret = urlopen(url).read()
        print(ret)
    return get

get_func = get_url()
get_func()

 

posted @ 2019-05-05 23:21  给我买AJ  阅读(77)  评论(0编辑  收藏  举报