Skip to content

Instantly share code, notes, and snippets.

@eddieantonio
Created October 27, 2023 14:05
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 eddieantonio/b1c1554106377e5ffb4c2ec6c01bd0e2 to your computer and use it in GitHub Desktop.
Save eddieantonio/b1c1554106377e5ffb4c2ec6c01bd0e2 to your computer and use it in GitHub Desktop.
What will happen in this Python example? (made while writing this: https://eddieantonio.ca/blog/2023/10/25/python-is-a-compiled-language/)
a = "hello"
def say_a():
print(a)
if False:
a = "goodbye"
say_a()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment