Pythonスコープ内で、そのスコープ内でまだ宣言されていない変数に代入すると、その変数がキーワードでグローバルスコープ変数を参照するように関数の前に宣言されていない限り、新しいローカル変数が作成されますglobal
。
疑似コードの変更されたバージョンを見て、何が起こるかを見てみましょう。
# 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
実際、func_B
名前を付けた変数ですべてを書き直すことができx_local
、それは同じように機能します。
順序は、関数がグローバルxの値を変更する演算を実行する順序にのみ関係します。したがって、この例ではをfunc_B
呼び出してfunc_A
いるため、順序は関係ありません。この例では、順序は重要です。
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'.
注global
唯一のグローバルオブジェクトを変更するために必要とされます。宣言しなくても、関数内からアクセスできますglobal
。したがって、次のようになります。
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.
create_locally
とaccess_only
- の違いは、をaccess_only
呼び出さなくてもグローバルxにアクセスすることglobal
であり、どちらcreate_locally
も使用しない場合global
でも、値を割り当てているため、ローカルコピーが作成されます。
ここでの混乱が、グローバル変数を使用すべきではない理由です。