欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中函数使用全局变量

程序员文章站 2024-01-21 22:41:16
...

python在使用全局变量时需要在函数内部先对变量加一个global

s = 0

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

if __name__ == "__main__":
    test()