Skip to content

Instantly share code, notes, and snippets.

@diogojorgebasso
Created December 25, 2020 13:38
Show Gist options
  • Save diogojorgebasso/f7ba592a8b89f15e87f4982dd75b1117 to your computer and use it in GitHub Desktop.
Save diogojorgebasso/f7ba592a8b89f15e87f4982dd75b1117 to your computer and use it in GitHub Desktop.
This is beautiful!!
def will_print(message):
"Outer Function"
def will_question():
"Nested Function"
print(message)
will_question() #yes!
will_print("Some random message")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment