Dentro de un alcance de Python, cualquier asignación a una variable que aún no se haya declarado dentro de ese alcance crea una nueva variable local a menos que dicha variable se declare anteriormente en la función como una referencia a una variable de ámbito global con la palabra clave global
.
Veamos una versión modificada de su pseudocódigo para ver qué sucede:
# Here, we're creating a variable 'x', in the __main__ scope.
x = 'None!'
def func_A():
# The below declaration lets the function know that we
# mean the global 'x' when we refer to that variable, not
# any local one
global x
x = 'A'
return x
def func_B():
# Here, we are somewhat mislead. We're actually involving two different
# variables named 'x'. One is local to func_B, the other is global.
# By calling func_A(), we do two things: we're reassigning the value
# of the GLOBAL x as part of func_A, and then taking that same value
# since it's returned by func_A, and assigning it to a LOCAL variable
# named 'x'.
x = func_A() # look at this as: x_local = func_A()
# Here, we're assigning the value of 'B' to the LOCAL x.
x = 'B' # look at this as: x_local = 'B'
return x # look at this as: return x_local
De hecho, podría reescribir todo func_B
con la variable nombrada x_local
y funcionaría de manera idéntica.
El orden solo importa en la medida en que sus funciones realizan operaciones que cambian el valor de la x global. Por lo tanto, en nuestro ejemplo, el orden no importa, ya que las func_B
llamadas func_A
. En este ejemplo, el orden sí importa:
def a():
global foo
foo = 'A'
def b():
global foo
foo = 'B'
b()
a()
print foo
# prints 'A' because a() was the last function to modify 'foo'.
Tenga en cuenta que global
solo es necesario para modificar objetos globales. Aún puede acceder a ellos desde una función sin declararlos global
. Por lo tanto, tenemos:
x = 5
def access_only():
return x
# This returns whatever the global value of 'x' is
def modify():
global x
x = 'modified'
return x
# This function makes the global 'x' equal to 'modified', and then returns that value
def create_locally():
x = 'local!'
return x
# This function creates a new local variable named 'x', and sets it as 'local',
# and returns that. The global 'x' is untouched.
Tenga en cuenta que la diferencia entre create_locally
y access_only
- access_only
es acceder a la x global a pesar de no llamar global
, y aunque create_locally
no usa global
ninguno, crea una copia local ya que está asignando un valor.
La confusión aquí es por qué no debe usar variables globales.