函数嵌套定义

Posted hzyujun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数嵌套定义相关的知识,希望对你有一定的参考价值。

1.1

def outer():

  a = 1

  def  inner():

    print(a)

       a += 1

    print(‘inner ‘)

  inner()

outer()

内部函数可以使用外部函数的变量。

# python3

nonlocal

1.2 闭包:

嵌套的函数,内部函数调用外部函数的变量。

1.2.1

def outer():

  a = 1

  def inner():

    print(a)

  print(inner.__closure__)

  return inner

outer()

1.2.2 内部函数可以引用外部函数的变量

def outer():

  a = 1

  def inner():

    print(a)

  return inner

outer()

在函数的外部去使用内部的函数;

1.2.3闭包应用

from urllib.request import urlopen
def get_url():
url = ‘http://www.baidu.com‘
def get():
ret = urlopen(url).read().decode(‘utf8‘)
print(ret)
return get

get_func = get_url()
get_func()
 
 


 

以上是关于函数嵌套定义的主要内容,如果未能解决你的问题,请参考以下文章

C和C++是不是都可以函数嵌套调用,但是不能函数嵌套定义?

protobuf安装和嵌套定义

EXCEL函数内部的嵌套函数

函数嵌套

函数嵌套

函数嵌套定义