Skip to content

Instantly share code, notes, and snippets.

@JackInTaiwan
Created November 21, 2018 04:35
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/ef655b7d62890cf2a4bd7cda051d6f07 to your computer and use it in GitHub Desktop.
Save JackInTaiwan/ef655b7d62890cf2a4bd7cda051d6f07 to your computer and use it in GitHub Desktop.
def dog():
height = 40
def profile():
print("I'm a dog and my height is {}.".format(height))
return profile
if __name__ == "__main__":
dog_profile = dog()
dog_profile()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment