Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
def myfunc1(): x = "Jane" def myfunc2(): nonlocal x x = "hello" myfunc2() return x print(myfunc1())
hello