Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class car:
  2. def __init__(self,name):
  3. self.name = name
  4. print("Car Created:" + self.name)
  5.  
  6. def start(self):
  7. print("Start " + self.name)
  8.  
  9. def __del__(self):
  10. print("Car Destroyed" + self.name)
  11.  
  12. mazda = car("mazda")
  13. mazda.start()
  14. del mazda
  15. mazda.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement