Skip to content

Instantly share code, notes, and snippets.

@klange
Created February 1, 2018 03:19
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 klange/2d2b1dc46ee1028b9586245e9d001667 to your computer and use it in GitHub Desktop.
Save klange/2d2b1dc46ee1028b9586245e9d001667 to your computer and use it in GitHub Desktop.
class Foo(object):
a = 1
f = Foo()
f.a = 3
g = Foo()
print g.a, f.a, Foo.a # 1 3 1
Foo.a = 4
h = Foo()
print g.a, f.a, h.a, Foo.a # 4 3 4 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment