Python global 关键词
实例
在函数内部声明一个全局变量,并在函数外部使用它:
#create a function:
def myfunction():
global x
x =
"hello"
#execute the function:
myfunction()
#x should now
be global, and accessible in the global scope.
print(x)
亲自试一试 »
定义和用法
global
关键字用于从非全局范围创建全局变量,例如在函数内部。