Skip to content

Instantly share code, notes, and snippets.

@bmispelon
Created November 29, 2018 12:33
Show Gist options
  • Select an option

  • Save bmispelon/dab9d526d4f4502ecd0acdffda906b0a to your computer and use it in GitHub Desktop.

Select an option

Save bmispelon/dab9d526d4f4502ecd0acdffda906b0a to your computer and use it in GitHub Desktop.
Fun with fullwidth unicode characters
class MyClass:
my_attr = 42
print(MyClass.my_attr)
print(MyClass.my_attr)
print(getattr(MyClass, 'my_attr'))
print(getattr(MyClass, 'my_attr'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment