Python有全變量,壹般和c中的壹樣。
bar = 'python '
def foo1():
Bar = 'hello' #這裏是局部變量。
Print(bar) #鍵入hello,不會影響全局變量bar(全局bar還是' python ')。
定義foo2():
Print(bar) # Type python # python會搜索全局bar,因為沒有聲明局部變量,這個bar是全局的。
def foo3():
全局條#告訴python下面的條是全局的。
Bar = 'hello' #這裏是全局變量。
Print(bar) #鍵入hello,全局欄已經改為hello而不是python。