-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolymorphism.py
More file actions
77 lines (56 loc) · 1.5 KB
/
Copy pathpolymorphism.py
File metadata and controls
77 lines (56 loc) · 1.5 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
70
71
72
73
74
75
76
77
# x = "Hello World!"
# print(len(x))
# mytuple = ("apple", "banana", "cherry")
# print(len(mytuple))
# thisdict = {
# "brand": "Ford",
# "model": "Mustang",
# "year": 1964
# }
# print(len(thisdict))
#Different classes with the same method:
# 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") #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):
# x.move()
#Create a class called Vehicle and make Car, Boat, Plane child classes of Vehicle:
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()