如果一个变量,既能在一个函数中使用,也能在其他的函数中使用,这样的变量就是全局变量。
# 定义全局变量a = 100def test1(): print(a)def test2(): b = 1000 print(a+b)# 调用函数test1()test2()
观察输出结果