Advertisement
albin900

Untitled

Jun 26th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. class MyClass:
  2.  
  3.     def __init__(self, somedata):
  4.         print somedata
  5.         self.data = somedata
  6.  
  7.  
  8.     def function(self):
  9.         print self.data
  10.  
  11.     def hey(self, cool):
  12.         self.data = cool
  13. class = MyClass()
  14. class.function()
  15. class.hey("hello")
  16. class.function()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement