1. 程式人生 > >如何在一個函數內部修改全局變量

如何在一個函數內部修改全局變量

修改 pre clas 如何 內部 函數 style 全局變量 全局

#coding=utf-8
a=5
def test():
    global a
    print(a)
test()

輸出

 5

例子

#coding=utf-8
a=5
def test():
    global a
    a=10
test()
print(a)

輸出

10

如何在一個函數內部修改全局變量