获得您的 自己的 Python 服务器 Result Size: 625 x 664
x
 
def myfunc1():
  x = "John"
  def myfunc2():
    nonlocal x
    x = "hello"
  myfunc2() 
  return x
print(myfunc1())
你好