Python变量作用域(全局变量和局部变量)

7个月前 (04-27)
所谓作用域(Scope),就是变量的有效范围,就是变量可以在哪个范围以内使用。有些变量可以在整段代码的任意位置使用,有些变量只能在函数内部使用,有些变量只能在 for 循环内部使用。

变量的作用域由变量的定义位置决定,在不同位置定义的变量,它的作用域是不一样的。本节我们只讲解两种变量,局部变量全局变量

Python局部变量

在函数内部定义的变量,它的作用域也仅限于函数内部,出了函数就不能使用了,我们将这样的变量称为局部变量(Local Variable)。

要知道,当函数被执行时,Python 会为其分配一块临时的存储空间,所有在函数内部定义的变量,都会存储在这块空间中。而在函数执行完毕后,这块临时存储空间随即会被释放并回收,该空间中存储的变量自然也就无法再被使用。

举个例子:

def demo():

add = "http://c.biancheng网站站点" rel="nofollow" /> 函数内部 add = http://c.biancheng网站站点" rel="nofollow" />

def demo(name,add):

print("函数内部 name =",name)

print("函数内部 add =",add)

demo("Python教程","http://c.biancheng网站站点" rel="nofollow" /> 函数内部 name = Python教程
函数内部 add = http://c.biancheng网站站点" rel="nofollow" /> 全局变量(Global Variable)。

和局部变量不同,全局变量的默认作用域是整个程序,即全局变量既可以在各个函数的外部使用,也可以在各函数内部使用。

定义全局变量的方式有以下 2 种:

  • 在函数体外定义的变量,一定是全局变量,例如:

    add = "http://c.biancheng网站站点" rel="nofollow" /> 函数体内访问: http://c.biancheng网站站点" rel="nofollow" />

    def text():

    global add

    add= "http://c.biancheng网站站点" rel="nofollow" /> 函数体内访问: http://c.biancheng网站站点" rel="nofollow" />

    #全局变量

    Pyname = "Python教程"

    Pyadd = "http://c.biancheng网站站点" rel="nofollow" />

    { ...... , 'Pyname': 'Python教程', 'Pyadd': 'http://c.biancheng网站站点" rel="nofollow" />

    print(globals()['Pyname'])

    globals()['Pyname'] = "Python入门教程"

    print(Pyname)

    程序执行结果为:

    Python教程

    Python入门教程

    2) locals()函数

    locals() 函数也是 Python 内置函数之一,通过调用该函数,我们可以得到一个包含当前作用域内所有变量的字典。这里所谓的“当前作用域”指的是,在函数内部调用 locals() 函数,会获得包含所有局部变量的字典;而在全局范文内调用 locals() 函数,其功能和 globals() 函数相同。

    举个例子:

    #全局变量

    Pyname = "Python教程"

    Pyadd = "http://c.biancheng网站站点" rel="nofollow" /> 函数内部的 locals:
    {'Sheadd': 'http://c.biancheng网站站点" rel="nofollow" />

    #全局变量

    Pyname = "Python教程"

    Pyadd = "http://c.biancheng网站站点" rel="nofollow" /> shell教程

    shell教程

    显然,locals() 返回的局部变量组成的字典,可以用来访问变量,但无法修改变量的值。

    3) vars(object)

    vars() 函数也是 Python 内置函数,其功能是返回一个指定 object 对象范围内所有变量组成的字典。如果不传入object 参数,vars() 和 locals() 的作用完全相同。

    由于目前读者还未学习 Python 类和对象,因此初学者可先跳过该函数的学习,等学完 Python 类和对象之后,再回过头来学习该函数。

    举个例子:

    #全局变量

    Pyname = "Python教程"

    Pyadd = "http://c.biancheng网站站点" rel="nofollow" /> 有 object:
    {...... , 'name': 'Python 教程', 'add': 'http://c.biancheng网站站点" rel="nofollow" />