-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path26_Polymorphism.py
More file actions
69 lines (54 loc) · 1.33 KB
/
Copy path26_Polymorphism.py
File metadata and controls
69 lines (54 loc) · 1.33 KB
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
#Built In Polymorphism
print(len("Hello"))
print(len([10, 20, 30]))
print(len({"Name" : "Nazmus Sakib", "Age" : 23}))
#-----------------
#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!")
car1 = car("ford","Mustang")
boat1 = boat("Ibiza", "Touring 20")
plane1 = plane("Boieng", "747")
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()