在Python中,可以使用global
關(guān)鍵字來定義全局變量。全局變量是在函數(shù)外部定義的變量,在整個程序中都可以訪問到。
以下是定義全局變量的方法:
global_variable = 10
global
關(guān)鍵字聲明一個變量為全局變量:def my_function():
global global_variable
global_variable = 10
在這兩種情況下,global_variable
都是全局變量,可以在整個程序中的任何位置訪問到。