Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class MyClass:
  2. variable = "blah"
  3.  
  4. def function(self):
  5. print("The variable is {}.".format(self.variable))
  6.  
  7. myobject_x = MyClass()
  8. myobject_y = MyClass()
  9.  
  10. myobject_y.variable = "yackity"
  11.  
  12. myobject_x.function()
  13. myobject_y.function()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement