Advertisement
Blessing988

Untitled

Mar 29th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. class Zombie():
  2.  
  3.     def __init__(self, health = 100, brains_eaten = 5):
  4.         self.health = health
  5.         self.brains_eaten = brains_eaten
  6.  
  7. bob = Zombie(brains_eaten = 5, health = 80)
  8.  
  9. sally = Zombie(120, 3)
  10.  
  11. benjamin = Zombie( )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement