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