Skip to content

Instantly share code, notes, and snippets.

@hanjae-jea
Last active August 9, 2018 10:33
Show Gist options
  • Save hanjae-jea/1af6e40fa01ed97dc670ad3a533c39fd to your computer and use it in GitHub Desktop.
Save hanjae-jea/1af6e40fa01ed97dc670ad3a533c39fd to your computer and use it in GitHub Desktop.
class MyClass:
myVar = 1
def HelloWorld(self):
MyClass.myVar = 2
self.myVar = 3
a = MyClass()
print(MyClass.myVar)
print(a.myVar)
a.HelloWorld()
print(MyClass.myVar)
print(a.myVar)
b = MyClass()
print(b.myVar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment