Skip to content

Instantly share code, notes, and snippets.

@JackInTaiwan
Created November 21, 2018 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JackInTaiwan/553a37cdb65e567b96daeb86e243ecd0 to your computer and use it in GitHub Desktop.
Save JackInTaiwan/553a37cdb65e567b96daeb86e243ecd0 to your computer and use it in GitHub Desktop.
def dog():
height = 40
def grow_up():
nonlocal height
height = height + 1
print("Thanks for making me growing up. I'm now {} meters !!!!".format(height))
return grow_up
if __name__ == "__main__":
dog_grow_up = dog()
dog_grow_up()
# > Thanks for making me growing up. I'm now 41 meters !!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment