Python global 关键字
-
定义和用法
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)
-
相关页面
Python 教程:Python 作用域