python嵌套函數

來源:互聯網
上載者:User

標籤:python

1、嵌套函數定義

在python中有一種特殊函數,這種函數定義在函數的內部,像這樣定義在其他函數內的函數叫做內建函式,內建函式所在的函數叫做外部函數。我們還可以定義多層嵌套函數,即內建函式定義一個內建函式。內建函式定義很簡單,同樣使用def定義,只是定義在一個函數的內部,舉個例子:

>>> var=90>>> def test():def nest():global varprint(var)var+=1return nest

>>> test()()90


這裡要注意執行時是test()(),而不是test().nest(),這是因為test()返回了一個nest,然後執行nest()。

2、討論嵌套函數的範圍

內建函式可以使用外部函數定義的變數,例如:

def f():def f1():x=3print ("目前在函數f1()中:x=", x)def f2():print ("目前在函數f2()中:x=", x)return f2return f1

>>> f()()()

目前在函數f1()中:x= 3

目前在函數f2()中:x= 3

>>> def f():

def f1():

x=3

print ("目前在函數f1()中:x=", x)

def f2():

x+=5

print ("目前在函數f2()中:x=", x)

return f2

return f1

>>> f()()()

目前在函數f1()中:x= 3

Traceback (most recent call last):

  File "<pyshell#47>", line 1, in <module>

    f()()()

  File "<pyshell#46>", line 6, in f2

    x+=5

UnboundLocalError: local variable ‘x‘ referenced before assignment



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.