标签:无效 nbsp 函数 def style bsp col return hello
闭包函数:
闭:封闭,指的是该函数是定义一个函数内部的函数
包:该内部函数包含对外层函数名字的引用
def outter():
x = 1
def inner():
print(‘hello‘, x)
return inner
f = outter()
def foo():
x = 1111111#无效
f()
foo()
为函数体传值的两种方式:
方式一:直接以参数的形式传入
def foo(name):
print(‘hello %s‘%name)
foo(‘egon‘)
foo(‘xia‘)
方式二:闭包函数
def outter(name):
def foo():
print(‘hello %s‘%name)
return foo
f=outter(‘xia‘)
f()
f()
f()
.....
标签:无效 nbsp 函数 def style bsp col return hello
原文地址:https://www.cnblogs.com/xiamenghan/p/9710628.html