Skip to content

Instantly share code, notes, and snippets.

@maxtortime
Created April 30, 2018 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxtortime/669e52dc64351524184b941674d065ee to your computer and use it in GitHub Desktop.
Save maxtortime/669e52dc64351524184b941674d065ee to your computer and use it in GitHub Desktop.
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