-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPolymorphism.py
84 lines (58 loc) · 1.77 KB
/
Polymorphism.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
Polymorphism: The word polymorphism means having many forms.
In programming, it refers to methods/functions/operators with the same name that can be executed on many objects or classes.
Example: (Build-in Function Polymorphism)
len('string')
len('age')
Note: Same func but use many times and diff result.
"""
# ====== Class Polymorphism ======
def class_polymorphism():
class Car:
def __init__(self, brand, model):
self.brand = brand
self.model = model
def move(self):
print("Drive!")
class Boat:
def __init__(self, brand, model):
self.brand = brand
self.model = model
def move(self):
print("Sail!")
class Plane:
def __init__(self, brand, model):
self.brand = brand
self.model = model
def move(self):
print("Fly!")
# Instance / Objects
car1 = Car("Ford", "Mustang") # Create a Car class
boat1 = Boat("Ibiza", "Touring 20") # Create a Boat class
plane1 = Plane("Boeing", "747") # Create a Plane class
for x in (car1, boat1, plane1):
x.move()
# ====== Inheritance Class Polymorphism =====
class Vehicle:
def __init__(self, brand, model):
self.brand = brand
self.model = model
def move(self):
print("Move!")
class Car(Vehicle):
pass
class Boat(Vehicle):
def move(self):
print("Sail!")
class Plane(Vehicle):
def move(self):
print("Fly!")
car1 = Car("Ford", "Mustang") #Create a Car object
boat1 = Boat("Ibiza", "Touring 20") #Create a Boat object
plane1 = Plane("Boeing", "747") #Create a Plane object
for x in (car1, boat1, plane1):
print(x.brand)
print(x.model)
x.move()
if __name__ == '__main__':
class_polymorphism()