Created
April 30, 2018 08:27
-
-
Save maxtortime/669e52dc64351524184b941674d065ee 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
class A: | |
b = 3 | |
a = A() | |
print(a.b) # 3 | |
a.c = 4 | |
print(a.c) # 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment