scoping

Run Settings
LanguagePython
Language Version
Run Command
x = 1 # scoping y = 2 # y is closure def a(): global x x = y + 1 def b(): global x x = x + 2 a() b() print(x)
Editor Settings
Theme
Key bindings
Full width
Lines