Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 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.  
  13. mazda = car("mazda")
  14. mazda.start()
  15. del mazda
  16. mazda.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement