Created
April 28, 2023 22:34
-
-
Save mheiber/b3e7380851ccb43ab4f6c9ed54e6d33b to your computer and use it in GitHub Desktop.
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
def hole_is_a_variable(): | |
_ = 'hello' | |
print(_) # 'hello' | |
def hole_is_not_a_variable(): | |
match 'hello': | |
case _: | |
print(_) # NameError | |
hole_is_a_variable() | |
hole_is_not_a_variable() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment