您好,登錄后才能下訂單哦!
小編給大家分享一下Python中nonlocal關鍵字與global關鍵字怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
python引用變量的順序: 當前作用域局部變量->外層作用域變量->當前模塊中的全局變量->python內置變量
nonlocal關鍵字用來在函數或其他作用域中使用外層(非全局)變量。
首先:要明確 nonlocal
關鍵字是定義在閉包里面的。
請看以下代碼:
x = 0 def outer(): x = 1 def inner(): x = 2 print("inner:", x) inner() print("outer:", x) outer() print("global:", x)
結果:
# inner: 2
# outer: 1
# global: 0
現在,在閉包里面加入nonlocal關鍵字進行聲明:
x = 0 def outer(): x = 1 def inner(): nonlocal x x = 2 print("inner:", x) inner() print("outer:", x) outer() print("global:", x)
結果:
# inner: 2
# outer: 2
# global: 0
看到區別了么?這是一個函數里面再嵌套了一個函數。當使用 nonlocal 時,就聲明了該變量不只在嵌套函數inner()里面
才有效, 而是在整個大函數里面都有效。
global
關鍵字用來在函數或其他局部作用域中使用全局變量。但是如果不修改全局變量也可以不使用global
關鍵字。
還是一樣,看一個例子:
x = 0 def outer(): x = 1 def inner(): global x x = 2 print("inner:", x) inner() print("outer:", x) outer() print("global:", x)
結果:
# inner: 2
# outer: 1
# global: 2
global 是對整個環境下的變量起作用,而不是對函數類的變量起作用。
以上是“Python中nonlocal關鍵字與global關鍵字怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。