local variable hides global
X = 88 # global X def func(): X = 99 # local X: hides global func() print X # prints 88: unchanged