Created
September 2, 2016 10:31
-
-
Save levlaz/7d39b7924c493b905135c9fca5984253 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 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