Run ❯
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
def myfunc1(): x = "John" def myfunc2(): nonlocal x x = "hello" myfunc2() return x print(myfunc1())
hello