首页 > 代码库 > Python__闭包函数

Python__闭包函数

函数的使用需要明确定义阶段和调用阶段

闭包函数:定义在函数内部的函数,包含对外部作用域名字的使用,而不是对全局作用域名字的引用

import requests
def deco(url):
    def wrapper():
        return (requests.get(url).text)
    return wrapper
get = deco(https://www.baidu.com)
print(get())

 

Python__闭包函数