Python3中global/nonlocal用法
? ? ? 全局變量(global variable)是那些未在任何函數(shù)內(nèi)部定義并且具有全局作用域的變量,而局部變量(local variable)是那些在函數(shù)內(nèi)部定義并且其作用域僅限于該函數(shù)的變量。換句話(huà)說(shuō),我們可以說(shuō)局部變量只能在初始化它的函數(shù)內(nèi)部訪問(wèn),而全局變量在整個(gè)程序和每個(gè)函數(shù)內(nèi)部都可以訪問(wèn)。
? ? ? global關(guān)鍵字:如果我們要進(jìn)行賦值或更改全局變量,我們只需要在函數(shù)中使用global關(guān)鍵字。打印和訪問(wèn)全局變量不需要global關(guān)鍵字。如果在函數(shù)內(nèi)部更改或創(chuàng)建的任何變量尚未聲明為全局變量,則它都是局部變量。在函數(shù)外使用global關(guān)鍵字無(wú)效。global綁定全局變量。
? ? ? nonlocal關(guān)鍵字:與global關(guān)鍵字功能相似,但用于嵌套函數(shù)(nested function)中。nonlocal綁定局部變量,只對(duì)局部起作用,離開(kāi)嵌套函數(shù),那么該變量則無(wú)效。
? ? ? 以上內(nèi)容主要參考:https://www.geeksforgeeks.org/global-local-variables-python/
? ? ? 以下為測(cè)試代碼:
var = 6if var == 1:# reference: https://www.geeksforgeeks.org/global-local-variables-python/def f(): # Creating local variabless = "I love Geeksforgeeks" # local vairableprint("Inside Function:", s)f()#print("s:", s) # NameError: name 's' is not defined
elif var == 2:# reference: https://www.geeksforgeeks.org/global-local-variables-python/# Defining and accessing global variablesdef f(): # This function uses global variable sprint("Inside Function:", s)# Global scopes = "I love Geeksforgeeks" # global variable, is used both inside the f function as well as outside the f functionf()print("Outside Function:", s)
elif var == 3:# reference: https://www.geeksforgeeks.org/global-local-variables-python/# This function has a variable with name same as sdef f():#s += 'GFG' # UnboundLocalError: local variable 's' referenced before assignments = "Me too." # 如果在函數(shù)作用域內(nèi)也定義了同名變量,那么它將僅打印函數(shù)內(nèi)部給出的值,而不是全局值print(s)s = "I love Geeksforgeeks" # global scopef()print(s) # I love Geeksforgeeks
elif var == 4:# reference: https://www.geeksforgeeks.org/global-local-variables-python/# This function modifies the global variable 's'def f():global s # 如果我們要進(jìn)行賦值或更改全局變量,我們只需要在函數(shù)中使用global關(guān)鍵字s += ' GFG'print(s)s = "Look for Geeksforgeeks Python Section"print(s)s = "Python is great!" # global scopef()print(s) # Look for Geeksforgeeks Python Section
elif var == 5:# reference: https://www.geeksforgeeks.org/use-of-nonlocal-vs-use-of-global-keyword-in-python/def fun():var1 = 10def gun():nonlocal var1 # tell python explicitly that it has to access var1 initialized in fun using the keyword nonlocal# global var1; var1 = var1 + 10 # NameError: name 'var1' is not definedvar1 = var1 + 10print(var1) # 20gun()print(var1) # 20fun()
elif var == 6:# reference: https://www.geeksforgeeks.org/python-nonlocal-keyword/def geek_func():geek_name = "geekforgeeks" # local variable to geek_funcdef geek_func1(): # First Inner functiongeek_name = "GeekforGeeks"def geek_func2(): # Second Inner functionnonlocal geek_name # Declairing nonlocal variablegeek_name = 'GEEKSFORGEEKS'print(geek_name) # Printing our nonlocal variable, GEEKSFORGEEKSgeek_func2() # Calling Second inner functiongeek_func1() # Calling First inner functionprint(geek_name) # Printing local variable to geek_func, geekforgeeksgeek_func()
print("test finish")
? ? ? GitHub:https://github.com/fengbingchun/Python_Test
總結(jié)
以上是生活随笔為你收集整理的Python3中global/nonlocal用法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Python3中上下文管理器介绍
- 下一篇: Python3中闭包介绍