-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path62_Python_Polymorphism.py
87 lines (60 loc) · 1.51 KB
/
62_Python_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
82
83
84
85
86
87
# Python Polymorphism
print("Python Polymorphism:\n")
# Function Polymorphism
print("Function Polymorphism:\n")
# len()
x = "Hello World"
print(len(x)) # Number of characters
mytuple = ('apple', 'banana', 'mango', 'date')
print(len(mytuple)) # Number of items
mydict = {"brand": "Toyota", "model": 1980, "color": "white"}
print(len(mydict)) # Number of key/value pairs
# Class Polymorphism
print("\nClass Polymorphism:\n")
# Same move() method in all classes
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!")
car1 = Car("Ford", "Mustang")
boat1 = Boat("Ibiza", "Touring 20")
plane1 = Plane("Boeing", "747")
for x in (car1, boat1, plane1):
x.move()
# Inheritance Class Polymorphism
print("\nInheritance Class Polymorphism:\n")
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!")
car2 = Car("Toyota", "Z")
boat2 = Boat("Ibiza", "Touring 22")
plane2 = Plane("Cessena", "X")
for x in (car2, boat2, plane2):
print(x.brand)
print(x.model)
x.move()