Pythonトレーニング


5.3-2 グローバル変数

# 関数の外にある変数dataは関数method1、method2のどちらでも参照できる
data = 100
def method1():
    print(data)
def method2():
    print(data)