Innerhalb eines Python-Bereichs erzeugt jede Zuweisung an eine Variable, die nicht bereits innerhalb dieses Bereichs deklariert wurde, eine neue lokale Variable es sei denn, diese Variable zuvor in der Funktion mit dem Schlüsselwort "global scoped variable" deklariert wurde global
.
Schauen wir uns eine geänderte Version Ihres Pseudocodes an, um zu sehen, was passiert:
# 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
Man könnte sogar alles umschreiben func_B
mit der Variablen namens x_local
und es würde identisch funktionieren.
Die Reihenfolge spielt nur insofern eine Rolle, als die Funktionen Operationen ausführen, die den Wert des globalen x ändern. In unserem Beispiel spielt die Reihenfolge also keine Rolle, da func_B
ruft auf. func_A
. In diesem Beispiel spielt die Reihenfolge eine Rolle:
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'.
Beachten Sie, dass global
ist nur erforderlich, um globale Objekte zu ändern. Sie können immer noch von einer Funktion aus auf sie zugreifen, ohne dass sie deklariert werden müssen. global
. Wir haben also:
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.
Beachten Sie den Unterschied zwischen create_locally
y access_only
-- access_only
auf das globale x zugreift, obwohl es nicht global
und auch wenn create_locally
verwendet nicht global
erstellt es eine lokale Kopie, da es sich Zuweisung von einen Wert.
Die Verwirrung hier ist, warum Sie keine globalen Variablen verwenden sollten.
1 Stimmen
Nehmen Sie nicht an, dass Python Referenzen vor der Zuweisung als solche behandelt, nur weil Sie eine Variable in Ihrer Funktion zugewiesen haben. Bis zur ersten Zuweisung, wenn Sie x verwenden, wäre es weder die globale noch die lokale Variable. Sie werden die berüchtigte UnboundLocalError-Ausnahme ins Gesicht bekommen :)
0 Stimmen
Python kopiert nicht im Auftrag.