Last active
December 20, 2023 02:29
-
-
Save sloanlance/8aff360e474a065c472ed1a4cd05762a to your computer and use it in GitHub Desktop.
Python's handling of Unicode-character variables is surprising!
This file contains 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
π = {'π': 5} | |
for βΉοΈ in range(20): | |
# print(i, βΉοΈ, i == βΉοΈ) # NameError: name 'i' is not defined. | |
for _,__ in π.items(): | |
if __ == βΉοΈ: | |
print(_, βΉοΈ) | |
print(π) # Prints dictionary in π | |
print(A) # Also prints dictionary in π! | |
print(π is A) # True | |
π΅π²πΉπΉπΌ = 'Hello' | |
print(π΅π²πΉπΉπΌ) # Hello | |
print(hello) # Hello | |
print(π΅π²πΉπΉπΌ is hello) # True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment