-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5_inheritance_simple.py
46 lines (37 loc) · 1.28 KB
/
5_inheritance_simple.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Monster:
def __init__(self,health,energy):
self.health = health
self.energy = energy
# methods
def attack(self,amount):
print('The monster has attacked!')
print(f'{amount} damage was dealt')
self.energy -= 20
def move(self,speed):
print('The monster has moved')
print(f'It has a speed of {speed}')
class Shark(Monster):
def __init__(self,speed, health, energy):
#Monster.__init__(self,health,energy)
super().__init__(health,energy)
self.speed = speed
def bite(self):
print('The shark has bitten')
def move(self):
print('The shark has moved')
print(f'The speed of the shark is {self.speed}')
# exercise
# create scorpion class that inherits from monster
class Scorpion(Monster):
def __init__(self,poison_damage,scorpion_health,scorpion_energy):
self.poison_damage = poison_damage
super().__init__(health = scorpion_health,energy = scorpion_energy)
def attack(self):
print('The scorpion has attacked')
print(f'It has dealt {self.poison_damage} poison damage')
scorpion = Scorpion(poison_damage = 50, scorpion_health = 20, scorpion_energy = 10)
print(scorpion.health)
print(scorpion.energy)
# health and energy from the parent
# poison_damage attribute
# overwrite the damage method to show poison damage