Result Size: 625 x 571
โ€‹x
 
def myfunc1():
  x = "John"
  def myfunc2():
    x = "hello"
  myfunc2() 
  return x
โ€‹
print(myfunc1())
โ€‹
John