Python global 关键字
Python基础 2022-06-06 16:26:22小码哥的IT人生shichen
Python global 关键字
实例
在函数内部声明一个全局变量,并在函数外部使用它:
# 创建函数:
def myfunction():
global x
x = "hello"
# 执行函数:
myfunction()
# x 现在有关是全局变量,可以进行全局访问。
print(x)
完整实例:
#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 关键字用于从非全局范围创建全局变量,例如在函数内部。