Skip to content

Instantly share code, notes, and snippets.

@uruskan
Created February 6, 2017 20:05
Show Gist options
  • Select an option

  • Save uruskan/21ca1b15e8bde1bf0066aa25a150c853 to your computer and use it in GitHub Desktop.

Select an option

Save uruskan/21ca1b15e8bde1bf0066aa25a150c853 to your computer and use it in GitHub Desktop.
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