Created
November 29, 2018 12:33
-
-
Save bmispelon/dab9d526d4f4502ecd0acdffda906b0a to your computer and use it in GitHub Desktop.
Fun with fullwidth unicode characters
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
| 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