Dentro de um escopo Python, qualquer atribuição a uma variável ainda não declarada nesse escopo cria uma nova variável local, a menos que essa variável seja declarada anteriormente na função como se referindo a uma variável de escopo global com a palavra-chave global
.
Vejamos uma versão modificada do seu pseudocódigo para ver o que acontece:
# 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 fato, você pode reescrever tudo func_B
com a variável nomeada x_local
e ela funcionaria de forma idêntica.
A ordem importa apenas na ordem em que suas funções executam operações que alteram o valor do x global. Assim, em nosso exemplo, a ordem não importa, desde as func_B
chamadas func_A
. Neste exemplo, a ordem 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'.
Observe que global
é necessário apenas para modificar objetos globais. Você ainda pode acessá-los de dentro de uma função sem declarar global
. Assim, temos:
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.
Observe a diferença entre create_locally
e access_only
- access_only
está acessando o x global, apesar de não chamar global
, e mesmo que create_locally
não use global
, ele cria uma cópia local, pois está atribuindo um valor.
A confusão aqui é por que você não deve usar variáveis globais.