-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpiracy.py
26 lines (22 loc) · 877 Bytes
/
piracy.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
print('Object Oriented Programming.')
print()
class Ship:
"""
(...)
Every time your spies see a new ship enter the dock, they will create a
new ship object based on their observations.
draft - an estimate of the ship's weight based on how low it is in the water
crew - the count of crew on board.
Taking into account that an average crew member on board adds 1.5 units
to the draft, a ship that has a draft of more than 20 without crew is
considered worthy to loot. Any ship weighing that much must have a lot of booty!
"""
def __init__(self, draft, crew):
self.draft = draft
self.crew = crew
def is_worth_it(self):
# This function decides if a ship is worthy to loot.
return self.draft - self.crew * 1.5 > 20
Titanic = Ship(36, 10)
print(Titanic.is_worth_it()) # Outputs - True.
print(Ship)