開發筆記:Python中的全域變數

來源:互聯網
上載者:User

原文地址

全域變數不符合參數傳遞的精神,所以,平時我很少使用,除非定義常量。今天有同事問一個關於全域變數的問題,才發現其中原來還有門道。

程式大致是這樣的:

CONSTANT = 0

def modifyConstant() :
        print CONSTANT
        CONSTANT += 1
        return

if __name__ == ‘__main__’ :
        modifyConstant()
        print CONSTANT

運行結果如下:
UnboundLocalError: local variable ‘CONSTANT’ referenced before assignment

看來,全域變數在函數modifyConstant中邊成了局部變數,似乎全域變數沒有生效?
做點修改:

CONSTANT = 0

def modifyConstant() :
        print CONSTANT
        #CONSTANT += 1
        return

if __name__ == ‘__main__’ :
        modifyConstant()
        print CONSTANT

運行正常,看來函數內部是可以訪問全域變數的。
所以,問題就在於,因為在函數內部修改了變數CONSTANT,Python認為CONSTANT是局部變數,而print CONSTANT又在CONSTANT += 1之前,所以當然會發生這種錯誤。

那麼,應該如何在函數內部訪問並修改全域變數呢?應該使用關鍵字global來修飾變數(有點像PHP):

CONSTANT = 0

def modifyConstant() :
        global CONSTANT
        print CONSTANT
        CONSTANT += 1
        return

if __name__ == ‘__main__’ :
        modifyConstant()
        print CONSTANT

就這麼簡單!

相關文章

聯繫我們

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