官术网_书友最值得收藏!

Variable scope

It is important to understand the scoping rules of variables inside functions. Each time a function executes, a new local namespace is created. This represents a local environment that contains the names of the parameters and variables that are assigned by the function. To resolve a namespace when a function is called, the Python interpreter first searches the local namespace (that is, the function itself) and if no match is found, it searches the global namespace. This global namespace is the module in which the function was defined. If the name is still not found, it searches the built-in namespace. Finally, if this fails then the interpreter raises a NameError exception. Consider the following code:

    a=10; b=20 
def my_function():
global a
a=11; b=21
my_function()
print(a) #prints 11
print(b) #prints 20

Here is the output of the preceding code:

In the preceding code, we define two global variables. We need to tell the interpreter, using the keyword global, that inside the function, we are referring to a global variable. When we change this variable to 11, these changes are reflected in the global scope. However, the variable b we set to 21 is local to the function, and any changes made to it inside the function are not reflected in the global scope. When we run the function and print b, we see that it retains its global value.

主站蜘蛛池模板: 崇礼县| 武隆县| 民权县| 南京市| 洞口县| 漯河市| 安多县| 永春县| 航空| 庄浪县| 峨眉山市| 宿州市| 兰州市| 大冶市| 扎赉特旗| 定安县| 洮南市| 巧家县| 扬州市| 黎平县| 永丰县| 桓台县| 眉山市| 镇江市| 邹城市| 绍兴县| 富裕县| 阳山县| 新绛县| 公主岭市| 全州县| 武邑县| 根河市| 阜新市| 额尔古纳市| 九寨沟县| 周宁县| 禹城市| 南京市| 丽江市| 星子县|