Skip to content

Instantly share code, notes, and snippets.

@levlaz
Created September 2, 2016 10:31
Show Gist options
  • Select an option

  • Save levlaz/7d39b7924c493b905135c9fca5984253 to your computer and use it in GitHub Desktop.

Select an option

Save levlaz/7d39b7924c493b905135c9fca5984253 to your computer and use it in GitHub Desktop.
class Test():
def test(self):
self.test_variable = 10
def test2(self):
if self.test_variable == 10:
print(self.test_variable)
a = Test()
a.test()
a.test2()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment