Skip to content

Instantly share code, notes, and snippets.

@sloanlance
Last active December 20, 2023 02:29
Show Gist options
  • Save sloanlance/8aff360e474a065c472ed1a4cd05762a to your computer and use it in GitHub Desktop.
Save sloanlance/8aff360e474a065c472ed1a4cd05762a to your computer and use it in GitHub Desktop.
Python's handling of Unicode-character variables is surprising!
𝐀 = {'πŸ˜€': 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