1. 程式人生 > >python中函式使用全域性變數

python中函式使用全域性變數

python在使用全域性變數時需要在函式內部先對變數加一個global

s = 0

def test():
    global s
    s +=2
    print(s)

if __name__ == "__main__":
    test()