Created
February 6, 2017 20:05
-
-
Save uruskan/21ca1b15e8bde1bf0066aa25a150c853 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 MyClass: | |
| sick = "man" | |
| def function(self): | |
| print ("This is a message inside the class") | |
| myobjectx = MyClass() | |
| print(myobjectx.sick) | |
| function() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment