python中函数使用全局变量
程序员文章站
2024-01-21 22:41:16
...
python在使用全局变量时需要在函数内部先对变量加一个global
s = 0
def test():
global s
s +=2
print(s)
if __name__ == "__main__":
test()