使用python在函數中定義全局變量的方法
在python函數中使用全局變量時,需要使用global進行聲明,否則它會隱藏該全局變量。
示例:
x = 1def func():global xprint xx = 2print xprint xfunc()print x
x = 1
def func():
global x
print x
x = 2
func()
輸出結果為:
1122
1
2
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529