Use global key word to reference outside global variables : Global « Language Basics « Python
- Python
- Language Basics
- Global
Use global key word to reference outside global variables

X = 88 # global X
def func():
global X
X = 99 # global X: outside def
func()
print X # prints 99
Related examples in the same category