Created
October 27, 2023 14:05
-
-
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/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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