詳解Python的函數嵌套

來源:互聯網
上載者:User
Python語言允許在定義函數的時候,其函數體內又包含另外一個函數的完整定義,這就是我們通常所說的嵌套定義。

執行個體1:

def OutFun():         #定義函數OutFun(),    m=3               #定義變數m=3;    def InFun():      #在OutFun內定義函數InFun()        n=4           #定義局部變數n=4        print m+n     #m相當於函數InFun()的全域變數     InFun()          #OutFun()函數內調用函數InFun()

執行個體2:

def InFun(m):    n=4    print m+ndef OutFun()     m=4     InFun(m)

執行個體2首先定義函數InFun(),然後再次定義OutFun()函數,此時InFun()和OutFun()完全獨立的兩個函數,再次OutFun()函數內調用InFun();其實執行個體1和執行個體2中的嵌套作用是一樣的,只是兩種不同的表現形式。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.